Help for this page

Select Code to Download


  1. or download this
    $_ ne "DontPrintMe" and print for @Array;
    
  2. or download this
    for (@Array) {
       next if $_ eq "DontPrintMe";
       print;
    }
    
  3. or download this
    for (my $i = 0; $i < @Array; ++$i) {
       print $Array[$i] unless $Array[$i] eq "DontPrintMe";
    }