http://www.perlmonks.org?node_id=992203


in reply to hash within an array within a hash

Here is a step by step sort of thing I hope it helps decrypt it a bit ! :) Ill crunch it all into one thing too then.

# drawn out my @anon = @{$account{'owners'}}; my %owner1 = %{$anon[0]}; my $name = $owner1{'name'}; print $name; ##### # one line print ${$account{'owners'}[0]}{'name'};