Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Re: Advanced replace function

by kyle (Abbot)
on Dec 04, 2009 at 19:08 UTC ( [id://811144]=note: print w/replies, xml ) Need Help??


in reply to Advanced replace function

You may be looking for the /g option to s///:

my $str="abc t[poop1] def [doop2] [woop3] xyz"; $str =~ s/\[.*?\]/~~/g; print "$str\n"; __END__ abc t~~ def ~~ ~~ xyz

Replies are listed 'Best First'.
Re^2: Advanced replace function
by ikegami (Patriarch) on Dec 04, 2009 at 19:49 UTC
    There was nothing about newlines being disallowed in the brackets. The following is faster and more likely to match correctly:
    s/\[.*?\]/~~/sg

    But that's risky, especially if you use it a larger pattern. The /.*?/ could match a "[" or a "]". That's obviously undesirable. The following pattern avoids that problem:

    s/\[[^\[\]]*\]/~~/g;

Log In?
Username:
Password:

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

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

    No recent polls found