in reply to Re: Re: Re: Re: extracting values from hashes
in thread extracting values from hashes

Just add a map before the grep like so
my @data = map $hash{$_}, grep exists $hash{$_}, @array;

HTH

_________
broquaint