http://qs321.pair.com?node_id=1108464


in reply to Re: Accessing and array of hashes
in thread Accessing and array of hashes

I need to access all of them, and it might be more them one block of the same key, so if I print:
print $print_data->[0]{name}
it prints 45 occurrences but with the same value.

Replies are listed 'Best First'.
Re^3: Accessing and array of hashes
by Anonymous Monk on Nov 26, 2014 at 18:16 UTC
    Need to use a loop:
    foreach my $detail (@{$test_data}){ my $name = $detail->{name}; print "$name\n"; }