I'm new to Perl, trying to figure out the best way to do a single-statement out-of-place pattern substitution:
my $new = ($old =~ s/foo/bar/); # Incorrect, I don't want to modify $old here.
Thanks all!
|
|
I'm new to Perl, trying to figure out the best way to do a single-statement out-of-place pattern substitution:
Thanks all!
|
|||
|
|
closed as exact duplicate by aku Oct 23 '08 at 1:32 |
|
|
|
||
|
|
|
|
This question is a duplicate of this one. |
||
|
|
|
|
The easiest way to do this in Perl is with two statements:
Even if you can find a way to do it in one statement, the above is likely to be more readable. |
||||
|