Help for this page

Select Code to Download


  1. or download this
    for ( reverse  0 .. $#array) {
        splice (@array,$_,1) if ($array[$_] =~ /^\#/)
    }
    
  2. or download this
    for (0 .. $#array) {
        push @array, $value if ($value = shift @array) !~ /^\#/
    }