|
|
| more useful options | |
| PerlMonks |
Re^3: Regular expression "replace string interpolation" problemby pc88mxer (Vicar) |
| on May 17, 2008 at 06:36 UTC ( #687065=note: print w/ replies, xml ) | Need Help?? |
|
To explain what's going on it might be helpful to use underlined bold text to represent strings. So, one can write: eval 2+2 → 4and this means if you eval the string 2+2, you'll get the string 4. In perl this is just:
In your original example, what is happening during the substitution s/$match/$replace/e is: eval $replace → $1 PerlI.e., the match is replaced with the string $1 Perl, and that is why $text2 contains $1 Perl world. How about just adding another /e modifier to evaluate the substitution again? Unfortunately this doesn't work because $1 Perl world is not valid perl syntax: eval eval $replace → eval $1 Perl world → syntax error When $replace and the substitution is written as: the evaluation of the replacement proceeds as follows: eval eval $replace → eval "$1 Perl"and because of the double quotes this last eval yields $1 concatenated with a space and the string Perl.
In Section
Seekers of Perl Wisdom
|
|
||||||||||||||||||||