Help for this page

Select Code to Download


  1. or download this
    for ( @$array ) {
        $_->[0] = $test if $_->[0] =~ m/\D/;
    }
    
  2. or download this
    $_->[0] =~ m/\D/ and $_->[0] = $test for @$array;