vote up 1 vote down star
$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.

flag

3 Answers

vote up 12 vote down check

Technically, that's not hash of arrays. That's hash of array references. So you should dereference it with @{...} operator and (optionally) force scalar context to convert array into its length.

scalar @{$HoA{teletubbies}}
link|flag
Obligatory mention of perlmonks.org/?node=References+quick+reference/… – ysth Oct 28 at 1:17
perldsc and perllol use the "hash of arrays", "array of arrays", etc. nomenclature. Anyone who writes %HoA probably has just read perldsc. I dislike it myself, but... it's too big to fight ;) – hobbs Oct 28 at 10:56
vote up 6 vote down

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:

my $size = scalar @{$HoA{teletubbies}};

But you can also do it implicitly in this instance:

my $size = @{$HoA{teletubbies}};

And this being Perl, you could also do it like this:

my $size = $#{$HoA{teletubbies}} + 1;

(The # operator returns the last index of an array, so adding one to it will give you its size).

link|flag
The last one is extra work and harder to read at a glance. In some cases, there's no real reason to search for "more ways" to do it. – Telemachus Oct 27 at 18:04
The last one is also deprecated in 5.10. – sebthebert Oct 27 at 20:47
What $# tells you depends on the value of $[. – Sinan Ünür Oct 27 at 21:13
1  
So shouldn't it be: my $size = $#{$HoA{teletubbies}} - $[ + 1; – Adrian Pronk Oct 27 at 21:57
@Sinan Ünür: but don't use that. – ysth Oct 28 at 1:15
vote up 0 vote down

If you want to do the entire hash then just add a bit more to it:

my $size= 0 ;
foreach ( values %HoA ) { $size += @$_ }
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.