![]() |
|
P is for Practical | |
PerlMonks |
Re: accessing an anonymous arrayby bart (Canon) |
on Apr 13, 2020 at 10:06 UTC ( #11115442=note: print w/replies, xml ) | Need Help?? |
I am sorry to say that "anonymous array" is actually a misnomer. It's not an array, it's a reference to an array.
These two snippets are actually equivalent: and
So when you try using \[1] to get a reference to the anonymous array, you're ending up with a reference to an array reference. Drop the backslashes n front of the open square brackets: you don't need them. And start to work it out from there.
In Section
Seekers of Perl Wisdom
|
|