|
|
| We don't bite newbies here... much | |
| PerlMonks |
Re: Reading files n lines a timeby Anonymous Monk |
| on Dec 06, 2012 at 14:19 UTC ( #1007584=note: print w/ replies, xml ) | Need Help?? |
|
Right now you consider 4 lines ... soon it may be 6. Plan ahead. Load the lines into an array by pushing them onto the end of it; noting when you've reached end-of-file e.g. if there should be less than 4 lines or you've run out. Each time you loop back, shift the first line off the array and push a new line onto the other end. The lines can be reached directly by indexes 0..3.
In Section
Seekers of Perl Wisdom
|
|
||||||||||||||||||||