in reply to
Cannot skip first lines in array
Why not beginning by
splicing
your array :
@rebasefile = splice @rebasefile, 10;
[download]
Then you can just do whatever you want on the remaining strings from the array.
--
zejames
Comment on
Re: Cannot skip first lines in array
Download
Code
Replies are listed 'Best First'.
Re^2: Cannot skip first lines in array
by
travisbickle34
(Beadle)
on Oct 20, 2004 at 12:59 UTC
Thanks a lot guys! All very useful suggestions and I've got it working now. It would have been nice if the code suggested in the book had actually worked! ;) Cheers again, TB34
[reply]
In Section
Seekers of Perl Wisdom