Beefy Boxes and Bandwidth Generously Provided by pair Networks
Your skill will accomplish
what the force of many cannot
 
PerlMonks  

Re3: pattern matching a limited number of times

by blakem (Monsignor)
on Sep 14, 2002 at 21:38 UTC ( [id://197935]=note: print w/replies, xml ) Need Help??


in reply to Re: Re: pattern matching a limited number of times
in thread pattern matching a limited number of times

The main problem is that it doesn't deal with overlapping regexes very well, (i.e. your regex matches parts of your replacement string).

Suppose you have the string:

"The wodchuck at the zo stod on the stoop";
You realize that it will only make sense after replacing the first three 'o's with 'oo's
my $str = "The wodchuck at the zo stod on the stoop"; $str =~ s/o/oo/i for 1..3; print "$str\n";
Oops, that yields:
The woooodchuck at the zo stod on the stoop
The other solutions would have produced:
The woodchuck at the zoo stood on the stoop

-Blake

Replies are listed 'Best First'.
Re: Re3: pattern matching a limited number of times
by bob49 (Initiate) on Sep 15, 2002 at 01:56 UTC
    Ok, I see Blakem... hmmmm.... I may be in the situation where the substitute will never be the same as the text substituted for..... Actually, I'm wrapping html around url's and their linked text.... I need to think about it though..... Thanks--you folks are really great.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others about the Monastery: (3)
As of 2024-04-26 06:20 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found