Help for this page

Select Code to Download


  1. or download this
    while (<>) {
        next if !/p/;
    ...
        next if !/l/;
        print;
    }
    
  2. or download this
    while (<>) {
        next unless /p/;
    ...
        next unless /l/;
        print;
    }