$HoA{teletubbies} = [ "tinky winky", "dipsy", "laa-laa", "po" ];
How can I find the number of elements in this hash of arrayref(s)? It should return 4.
|
|
How can I find the number of elements in this hash of arrayref(s)? It should return 4.
|
|||
|
|
|
|
Technically, that's not hash of arrays. That's hash of array references. So you should dereference it with
|
||||
|
|
|
You can get the size of an array in Perl by evaluating it in a scalar context. E.g., you can do this explicitly like:
But you can also do it implicitly in this instance:
And this being Perl, you could also do it like this:
(The |
||||||||||||
|
|
|
If you want to do the entire hash then just add a bit more to it:
|
||
|
|