Help for this page

Select Code to Download


  1. or download this
    my $found;
    while (<>) {
    ...
            }
        }
    }
    
  2. or download this
    while (<>) {
        my $i = /ABCD/ ... /EFGH/;
        print "========\n" if $i == 1;
        print if $i;
    }