Help for this page

Select Code to Download


  1. or download this
    my $replace = 0;
    
    ...
        next unless # pass of your condition;
        $array[$replace++] = $array[$x];
    }
    
  2. or download this
    your condition and $array[$replace++] = $array[$_] for 0 .. $#array;