vote up 10 vote down star
6

In Perl, what is a good way to perform a replacement on a string using a regular expression and store the value in a different variable, without changing the original?

I usually just copy the string to a new variable then bind it to the s/// regex that does the replacement on the new string, but I was wondering if there is a better way to do this?

$newstring = $oldstring;
$oldstring =~ s/foo/bar/g;
flag

5 Answers

vote up 24 vote down check

This is the idiom I've always used to get a modified copy of a string without changing the original:

($new = $original) =~ s/foo/bar/;
link|flag
3  
under "use strict" write this: (my $new = $original) =~ s/foo/bar/; – szabgab Sep 17 '08 at 14:55
Whether or not under use strict. Minimal scoping of variables++ – ysth Sep 19 '08 at 6:11
vote up 3 vote down

The one-liner solution is more useful as a shibboleth than good code; good Perl coders will know it and understand it, but it's much less transparent and readable than the two-line copy-and-modify couplet you're starting with.

In other words, a good way to do this is the way you're already doing it. Unnecessary concision at the cost of readability isn't a win.

link|flag
Ah, but the one line version isn't subject to the error in the question of unintentionally modifying the wrong string. – ysth Sep 19 '08 at 6:13
The one line version, <i>if correctly executed</i>, isn't subject, true. But that's a separate issue. – Josh Millard Sep 19 '08 at 11:12
You might think it's unnecessary concision, but having to type a variable name twice to use it once is twice the number of points of failure. It's perfectly readable to people who know the language, and it's even in our <i>Learning Perl</i> course. – brian d foy Sep 20 '08 at 22:27
vote up 7 vote down

Under use strict, say

(my $new = $original) =~ s/foo/bar/;

instead.

link|flag
vote up -2 vote down

If you write Perl with use strict;, then you'll find that the one line syntax isn't valid, even when declared.

With:
my ($newstring = $oldstring) =~ s/foo/bar/;

You get:
Can't declare scalar assignment in "my" at script.pl line 7, near ") =~" Execution of script.pl aborted due to compilation errors.

Instead, the syntax that you have been using, while a line longer, is the syntactically correct way to do it with use strict;. For me, using use strict; is just a habit now. I do it automatically. Everyone should.

#!/usr/bin/env perl -wT

use strict;

my $oldstring = "foo one foo two foo three";
my $newstring = $oldstring;
$newstring =~ s/foo/bar/g;

print "$oldstring","\n";
print "$newstring","\n";
link|flag
If you use warnings; instead of -w, you gain greater control: for instance, if you want to temporarily turn off warnings in a block of code. – glenn jackman Oct 21 at 13:51
vote up 8 vote down

Just a word of caution, John's answer correctly answers the question, but

($new = $original) =~ s/foo/bar/;

Is equivalent to

$newstring = $oldstring;
$newstring =~ s/foo/bar/g; #Modify $newstring instead of $oldstring

Which is I think what you meant in the first place. Probably better edit the question and correct your sample code.

link|flag

Your Answer

Get an OpenID
or

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