Re: Read file from second line

2002-08-26 Thread Q
Thank you Tanton, Felix; - Original Message - From: "Felix Geerinckx" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, August 26, 2002 5:32 PM Subject: Re: Read file from second line > on Mon, 26 Aug 2002 15:15:06 GMT, [EMAIL PROTECTED] (Q) wrote: &g

Re: Read file from second line

2002-08-26 Thread Felix Geerinckx
on Mon, 26 Aug 2002 15:15:06 GMT, [EMAIL PROTECTED] (Q) wrote: > Apologies for such a 'lame' question but i read the FAQ on > http://theoryx5.uwinnipeg.ca/CPAN/perl/pod/perlfaq5-full.html > > How do i read on from the second line of a text file? You start reading from the first line but throw

Re: Read file from second line

2002-08-26 Thread Tanton Gibbs
>How do i read on from the second line of a text file? Just read in the first line and ignore it open FILE, "file.txt" or die "Could not open file.txt: $!\n"; my $first_line = ; # now FILE is at the second line. while( ) { # do your processing } Tanton -- To unsubscribe, e-mail: [EMAIL

Read file from second line

2002-08-26 Thread Q
Apologies for such a 'lame' question but i read the FAQ on http://theoryx5.uwinnipeg.ca/CPAN/perl/pod/perlfaq5-full.html How do i read on from the second line of a text file? thanks in advance ICQ : 165709889