in reply to Cannot skip first lines in array

Why not beginning by splicing your array :
@rebasefile = splice @rebasefile, 10;

Then you can just do whatever you want on the remaining strings from the array.

--
zejames

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