Help for this page

Select Code to Download


  1. or download this
    $matching_key=grep { $_ =~ /$regex/  } keys %tax2loc;
    
  2. or download this
    @all_matching_keys = grep { $_ =~ /$regex/  } keys %tax2loc;
    $matching_key = $all_matching_keys[0];
    
  3. or download this
    ($matching_key) = grep { $_ =~ /$regex/  } keys %tax2loc;
    
  4. or download this
    $matching_key = first { $_ =~ /$regex/  } keys %tax2loc;
    
  5. or download this
    $matching_key = first { /$regex/ } keys %tax2loc;