in reply to find & replace a string in perl

s/test/^\#/g

This does not do what you think it does. Try this substitution on its own and think about what you see. Good example data would be

hello test foo thisisjustatest test1 test2 test3

Hint: The right hand side of a regular expression is not magic, it is just a string.

Replies are listed 'Best First'.
Re^2: find & replace a string in perl
by iefbr14 (Initiate) on Nov 25, 2010 at 15:22 UTC
    i'd try
    s/^(.*?)test(.*)$/"#$1"."test$2"/e