Help for this page

Select Code to Download


  1. or download this
    
    foreach my $item(@array) {
         next unless ($item =~ "good stuff");
         }
    
  2. or download this
    map {
    die "Bogus" unless m["good stuff"];
    #DO STUFF
    } @array
    
  3. or download this
    map {
    next "Bogus" unless m["good stuff"];
    #DO STUFF
    } @array