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

(elbie): regex for but not \\

by elbie (Curate)
on May 27, 2002 at 01:00 UTC ( [id://169456]=note: print w/replies, xml ) Need Help??


in reply to regex for [ but not \[

Look ahead and look behind assertions are perfect for this sort of thing. In this case, negative assertions can make sure that the extra pattern you specify (i.e. the backslash) doesn't occur:

m/(?<!\\)\[.*?\](?!\\)/g should do what you want.

Update: jeffa pointed out my .?* should in fact be a .*?

elbieelbieelbie

Log In?
Username:
Password:

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

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

    No recent polls found