Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

Re^3: Regexp: Match anything except a certain word

by ikegami (Patriarch)
on Apr 21, 2006 at 17:26 UTC ( [id://544954]=note: print w/replies, xml ) Need Help??


in reply to Re^2: Regexp: Match anything except a certain word
in thread Regexp: Match anything except a certain word

Oops, I read the problem too fast. Fix:
$test =~ s{ ( <a\s (?:(?!target=|>).)* href="http:// (?:(?!target=|>).)* ) (?=>) }{$1 target="_blank"}xsgi;

Alternatively, the following *might* be faster, especially considering href is usually the first attribute:

$test =~ s{ ( <a\s (?:(?!href=|target=|>).)* href="http:// (?:(?!target=|>).)* ) (?=>) }{$1 target="_blank"}xsgi;

Tested.

Update: Collapsed (?!..re1..)(?!..re2..) into (?!..re1..|..re2..)

Log In?
Username:
Password:

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

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

    No recent polls found