Beefy Boxes and Bandwidth Generously Provided by pair Networks
Welcome to the Monastery
 
PerlMonks  

Re: Common Perl Pitfalls

by muba (Priest)
on Apr 29, 2012 at 19:32 UTC ( [id://967968]=note: print w/replies, xml ) Need Help??


in reply to Common Perl Pitfalls

while($string=~ m/reg(ex)/) { $string=~ s/$1/ister/; }

That frightens me a bit. Your substitution replaces the first occurance "ex" with "ister" in the string, no matter whether "ex" is part of "regex" or something else:

my $string = "Sometimes there are extra effects you didn't foresee whe +n using a regex."; while($string=~ m/reg(ex)/) { $string=~ s/$1/ister/; } print $string;

Output:

Sometimes there are istertra effects you didn't foresee when using a r +egister.

Istertra?

Replies are listed 'Best First'.
Re^2: Common Perl Pitfalls
by Joe_ (Beadle) on May 14, 2012 at 22:21 UTC

    You are quite right. It's a terrible mistake on my part. I will edit it.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others avoiding work at the Monastery: (6)
As of 2024-04-23 09:22 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found