Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

Re^2: Can't match negated words.

by hv (Prior)
on Jun 24, 2004 at 14:00 UTC ( [id://369363]=note: print w/replies, xml ) Need Help??


in reply to Re: Can't match negated words.
in thread Can't match negated words.

First, You haven't duplicated Abigail-II's expression correctly; if you do so, it will work correctly:

if ($line =~ /^(?:(?!throw).)*$/s) { debug ("Doesn't contain throw"); }

An alternative formulation, which I find slightly cleaner, is to recast it as a single negative lookahead:

if ($line =~ /^(?!.*?throw)/) { ... }

Hugo

Replies are listed 'Best First'.
Re^3: Can't match negated words.
by perlgags78 (Acolyte) on Jun 24, 2004 at 15:14 UTC

    hi Hugo, I see that you've a ? before the throw. What function has this? Is the '?' associated with the .* or the throw? Also I'm having hassle getting return characters to appear in my posts so they kinda look like one line posts. Any ideas? Thanks, Mark.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others imbibing at the Monastery: (6)
As of 2024-04-19 08:02 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found