in reply to How to parse this information out?
Hello coltman, how about this:
$\ = "\n"; # always print a newline at the end while (<>) { @s = split /\s{3,}/; # split the input into phrases print grep /NOTICE/, @s; # print the matching phrases }
Regards
~ Sixtease
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: How to parse this information out?
by kyle (Abbot) on Mar 21, 2007 at 21:28 UTC |