Beefy Boxes and Bandwidth Generously Provided by pair Networks
Think about Loose Coupling
 
PerlMonks  

Re: "Use of uninitialized value" due to empty elements in an array

by chuckbutler (Monsignor)
on Mar 31, 2010 at 14:14 UTC ( [id://832053]=note: print w/replies, xml ) Need Help??


in reply to "Use of uninitialized value" due to empty elements in an array

The defined function is what you need. It returns true if the value being tested IS NOT the special undef value. So something like:

unless (defined($line_split[0])) {...} ...

ahead of your other tests should get the job done.

Update: Fixed typo..

Good luck. -c

  • Comment on Re: "Use of uninitialized value" due to empty elements in an array
  • Download Code

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others musing on the Monastery: (3)
As of 2024-04-24 18:11 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found