Help for this page

Select Code to Download


  1. or download this
    $\="\n";
    while (<>) {
    ...
        @s=split /\s{3,}/;         # split the input into phrases
        print for grep /NOTICE/, @s;   # print the matches
    }