in reply to simple question on next line parameter
open OUTFILE, "<$outfile"; my @OUT = <OUTFILE>; open FINAL, ">$final"; my $line; foreach $line(@OUT) { if ($line=~/(my first line)<br>/) {print FINAL "$1\n"} if ($line=~/(my second line)<br>/) {print FINAL "$1\n\n"} if ($line=~/(my third line)<br>/) {print FINAL "$1\n"} }
Blessings,
~Polyglot~
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: simple question on next line parameter
by Bloodnok (Vicar) on May 19, 2009 at 17:44 UTC |