On 6/23/06, Omega -1911 <[EMAIL PROTECTED]> wrote:
Shawn, I modified your example like so, was this correct?

chomp( my $data1 = <IN> ); # line 1
chomp( my $data2 = <IN> ); # line 2
chomp( my $data3 = <IN> ); # line 3
chomp( my $data4 = <IN> ); # line 4
chomp( my $data5 = <IN> ); # line 5
while( <IN> ){
               chomp;
               push @past_bids, $_; # push remaining lines into array
               }
    close FILE;

You still haven't told us WHY you want to keep the entire rest of the
file you're reading in an array.

--
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
<http://learn.perl.org/> <http://learn.perl.org/first-response>


Reply via email to