Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
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 goofing around in the Monastery: (1)
As of 2024-04-25 19:41 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found