in reply to Re^2: grep for hash?
in thread grep for hash?

Written like it's said, "Copy each selected key":

$dest->{$_} = $orig->{$_} for grep /oo/, keys %$orig;

There's no need to twist one's mind to process the parent's expression.