Help for this page

Select Code to Download


  1. or download this
    while (<$FILE>) {
        if (/(\S+)\s+going\s+(\S+)/) {
           print "before: '$1'; after: '$2'\n";
        }
    }