Help for this page

Select Code to Download


  1. or download this
                          if ($key eq $thing)   {
  2. or download this
    exists $hash{$_} and push @new_array, $hash{$_} for @array;
  3. or download this
    my @new_array = map {$hash{$_}} grep {exists $hash{$_}} @array;
  4. or download this
    my @new_array = @hash{ grep {exists $hash{$_}} @array };