in reply to doing something with the rest of a file after matching a keyword
my $flag = false; my @saved #the saved portion of the file while (<FILE>) { #set the flag to true when we find the word Well if (/Well/) { $falg = true; } if ( $falg ) { push @saved, $_; #$_is the current line in your file } }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: doing something with the rest of a file after matching a keyword
by davorg (Chancellor) on Jan 17, 2003 at 17:01 UTC |