vote up 1 vote down star

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!

flag

closed as exact duplicate by aku Oct 23 '08 at 1:32

3 Answers

vote up 12 vote down check
(my $new = $old) =~ s/foo/bar/;
link|flag
vote up 2 vote down

This question is a duplicate of this one.

link|flag
vote up 2 vote down

The easiest way to do this in Perl is with two statements:

my $new = $old;
$new =~ s/foo/bar/;

Even if you can find a way to do it in one statement, the above is likely to be more readable.

link|flag
since when do you want a perl snippet to be readable :) – Julien Grenier Oct 23 '08 at 0:28
It's not necessarily more readable, just easier to understand if you don't know the language. It's worse for maintenence since you have to do it in two statements and duplicate a variable name. – brian d foy Oct 23 '08 at 1:06

Not the answer you're looking for? Browse other questions tagged or ask your own question.