As you mentioned that keys and values are unique,
my %hash2 = reverse %hash1;
Now the keys and values got interchanged.
Regards,
Murugesan Kandasamy
use perl for(;;);
%reverse_hash = reverse %original_hash
For more, see perldoc -q "hash element by value"
my @keys = qw ( a b c d e f g h i j);
my @vals = qw ( 1 1 1 4 5 6 7 8 9 0);
my %hash;
@hash{@keys} = @vals;
my @ones = grep {(each %hash)[1] == 1} keys %hash;
print "@ones\n";
Inverting the hash as shown previously is a better method if you are OK with the storage overhead and you will be doing multiple retrievals.
perlmonks.org content © perlmonks.org and inman, jwkrahn, murugu, singam, tirwhan
prlmnks.org © 2006 edmund von der burg (eccles & toad)
v 0.03