- or download this
$matching_key=grep { $_ =~ /$regex/ } keys %tax2loc;
- or download this
@all_matching_keys = grep { $_ =~ /$regex/ } keys %tax2loc;
$matching_key = $all_matching_keys[0];
- or download this
($matching_key) = grep { $_ =~ /$regex/ } keys %tax2loc;
- or download this
$matching_key = first { $_ =~ /$regex/ } keys %tax2loc;
- or download this
$matching_key = first { /$regex/ } keys %tax2loc;