Help for this page

Select Code to Download


  1. or download this
    for my $i (0..$#array) { $array[$i] =~ s/x//g; }
    
  2. or download this
    foreach (@array) { s/x//g; }
    
  3. or download this
    s/x//g foreach @array;