Help for this page

Select Code to Download


  1. or download this
        for ( @array )
        {
    ...
                push @found, $_ . $hash{$_};
            }
        }
    
  2. or download this
        push @found, 
            map { $_ . $hash{$_} }
            grep { exists $hash{$_} }
            @array;
    
  3. or download this
      push @found, map { exists $hash{$_} ? $_ . $hash{$_} : () } @array;