Help for this page

Select Code to Download


  1. or download this
    my @new=map { exists $hash{$_} ? $hash{$_} : $_ } @array;
    
  2. or download this
    my @new=map $hash{$_} || $_, @array;