Help for this page

Select Code to Download


  1. or download this
    foreach my $thing (@array) {
        if(exists $hash{$thing}) {
           push @new_array, $hash{$thing};
        }
    }
    
  2. or download this
    my @new_array = grep { exists $hash{$_} ? $hash{$_} : 0 } @array;