Beefy Boxes and Bandwidth Generously Provided by pair Networks
Keep It Simple, Stupid
 
PerlMonks  

Re^2: regexp wizardry needed

by Corion (Patriarch)
on Jan 25, 2013 at 17:13 UTC ( [id://1015376]=note: print w/replies, xml ) Need Help??


in reply to Re: regexp wizardry needed
in thread regexp wizardry needed

perlop says that /r is for non-destructive operation of a regular expression. You can simply replace that by introducing a temporary variable:

my $result = $example =~ s/foo/bar/r;

... can be replaced by

(my $result=$example) =~ s/foo/bar/;

In your case, you will have to make sure your map block actually returns the intended value:

... map { (my $result=$_) =~ s/foo/bar/; $result } @elements

Replies are listed 'Best First'.
Re^3: regexp wizardry needed
by Anonymous Monk on Jan 25, 2013 at 18:03 UTC
    /r is only availabe in 5.14 I am using 5.10.

      Please read Corion's reply: "In your case, you will have to..."

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1015376]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others having a coffee break in the Monastery: (3)
As of 2024-04-23 23:42 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found