in reply to Re: Reading in Text File and skipping lines
in thread Reading in Text File and skipping lines
or evenwhile( my $line = <TEMPLATE> ) { $outputpage .= $line; }
my @lines = <TEMPLATE>; foreach my $line (@lines) { $outputpage .= $line; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Reading in Text File and skipping lines
by graff (Chancellor) on Nov 08, 2002 at 04:16 UTC |