Beefy Boxes and Bandwidth Generously Provided by pair Networks
Syntactic Confectionery Delight
 
PerlMonks  

Re: Trying to skip for $LEV = 0

by dorko (Prior)
on Jan 28, 2007 at 07:01 UTC ( [id://596947]=note: print w/replies, xml ) Need Help??


in reply to Trying to skip for $LEV = 0

DATA is a file handle, but it looks like your trying to use it as a label.

Also, I'm not sure why your trying to use a matching regular expression. I'd test for equality. Instead of:
next DATA if ($LEV =~ /0/);

try:
next if ($LEV == 0);  # $LEV is a number -- NO DATA
or
next if ($LEV eq '0')  # $LEV is a string -- NO DATA

Without examples of your data, these suggestions are just guesses.

Cheers,

Brent

-- Yeah, I'm a Delt.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others sharing their wisdom with the Monastery: (3)
As of 2024-04-19 01:41 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found