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

Re: How to compare an empty key with another empty key in associative array

by Rudolf (Pilgrim)
on Oct 24, 2012 at 11:50 UTC ( [id://1000615]=note: print w/replies, xml ) Need Help??


in reply to How to compare an empty key with another empty key in associative array

$b = {}; is not an associative array. An array containing other arrays may look something like this:

my @two_d_array = ([$x,$y,$z],[1,2,3],['a','b','c']);

To see if an array is empty, you can check it's scalar value for contents.

my $elements = scalar(@two_d_array);

UPDATED: Associative array is considered a hash in Perl, (thanks choroba),

Replies are listed 'Best First'.
Re^2: How to compare an empty key with another empty key in associative array
by choroba (Cardinal) on Oct 24, 2012 at 11:51 UTC
    "Associative array" is "hash" in Perl lingo, not an array.
    لսႽ† ᥲᥒ⚪⟊Ⴙᘓᖇ Ꮅᘓᖇ⎱ Ⴙᥲ𝇋ƙᘓᖇ

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1000615]
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: (4)
As of 2024-04-23 07:33 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found