Re: access values in array of hashrefs
- From: noreply@xxxxxxxxx (Gunnar Hjalmarsson)
- Date: Fri, 30 May 2008 21:12:07 +0200
Ryan wrote:
my $HHs=[
{Rx => 'test', key2 => '1st second key' },
{Rx => '2nd1', key2 => '2nd second key' },
{Rx => '3rd1', key2 => '3rd second key' }
];
say join(', ', @{$HHs->{Rx}}); # say all the values of the 'Rx' key in each element of @$HHs.
Is there an easy way to do what I want here?
say join ', ', map $_->{Rx}, @$HHs;
--
Gunnar Hjalmarsson
Email: http://www.gunnar.cc/cgi-bin/contact.pl
.
- References:
- access values in array of hashrefs
- From: Ryan
- access values in array of hashrefs
- Prev by Date: Re: access values in array of hashrefs
- Next by Date: Re: How perl program execution happened ?
- Previous by thread: Re: access values in array of hashrefs
- Index(es):