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

Re^2: To test empty array in perl

by nagalenoj (Friar)
on Apr 27, 2010 at 04:44 UTC ( [id://837020]=note: print w/replies, xml ) Need Help??


in reply to Re: To test empty array in perl
in thread To test empty array in perl

print "Array isn't empty.Array Values:@array\n" if($array[0]);

This won't tell you whether the array is empty.

What happens when the first index of array has undef or 0.?

# my @array = (0, undef, 1, 2, 3); my @array = (undef, undef, 1, 2, 3); print "Array isn't empty.Array Values:@array\n" if($array[0]);

Log In?
Username:
Password:

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

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

    No recent polls found