in reply to One to many hash question

I'd probably use grep. There are other choices.
my @afflicted_keys = grep { $myhash{$_} eq "something" } keys %myhas +h;

-Paul