|
|
| Pathologically Eclectic Rubbish Lister | |
| PerlMonks |
Re: size of an array refby TomDLux (Vicar) |
| on Feb 27, 2012 at 19:49 UTC ( #956505=note: print w/ replies, xml ) | Need Help?? |
|
@a is an array. The first element of @a is $a[0], which stores a reference to an array of three elements. You can extract the inner array using @{ $a[0] }. Unlike the other suggestions, this works for the (fictional) array stored in $a[1] or other positions, and it can be extended for the third-level, fourth-level, etc. As Occam said: Entia non sunt multiplicanda praeter necessitatem.
In Section
Seekers of Perl Wisdom
|
|
||||||||||||||||||||