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


in reply to Accessing an array of anonymous hashes

i think you'll have to use the keys function:
print Dumper( keys %{ $transaction_record_fields_method1->[2] } ); print Dumper( values %{ $transaction_record_fields_method1->[2] } );
keep in mind keys will return a list, so:
my ($name) = keys %{ $transaction_record_fields_method1->[2] }; my $range = $transaction_record_fields_method1->[2]->{$name};