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

Re: regex: negative lookahead

by vinian (Beadle)
on Dec 06, 2011 at 05:01 UTC ( [id://941957]=note: print w/replies, xml ) Need Help??


in reply to regex: negative lookahead

i don't think there is something to do with regex negative lookahead, the problem lies in the
(\w+(,\s)?)+
it will match "INFO, FILE, SYSLOG", but not "INFO, FILE".
"+" is greedy, it eaten whatever match by "( ... )" . I don't how to make the above regex match less, but i use this
print "has_matched $has\n"    if $has   =~ /^($start(\w+(,\s)?)+?)$(?<!$end)/;
and it will not match $has.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others chilling in the Monastery: (4)
As of 2024-04-25 07:00 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found