Gossamer Forum
Home : General : Perl Programming :

Re: [Watts] Question about pop and shift

Quote Reply
Re: [Watts] Question about pop and shift In reply to
Why not just make sure you aren't reading in the blank lines?

Instead of slurping the whole file into the array, use a while loop to iterate through the open file. Verify the line doesn't start with a whitespace or # (or whatever else you want to ignore), and if all is well, push that ine into the array.

The difference in speed and memory is likely negligable between the two techniques.
Subject Author Views Date
Thread Question about pop and shift Watts 6757 Dec 19, 2003, 9:48 AM
Thread Re: [Watts] Question about pop and shift
Mark Badolato 6600 Dec 19, 2003, 10:08 AM
Thread Re: [Mark Badolato] Question about pop and shift
Watts 6615 Dec 19, 2003, 11:44 AM
Thread Re: [Watts] Question about pop and shift
Andy 6601 Dec 20, 2003, 2:36 AM
Post Re: [Andy] Question about pop and shift
Mark Badolato 6525 Dec 20, 2003, 8:45 AM