Help for this page
Select Code to Download
Select
or
download this
if ($key eq $thing) {
Select
or
download this
exists $hash{$_} and push @new_array, $hash{$_} for @array;
Select
or
download this
my @new_array = map {$hash{$_}} grep {exists $hash{$_}} @array;
Select
or
download this
my @new_array = @hash{ grep {exists $hash{$_}} @array };