in reply to Re: Re: Array Issues
in thread Array Issues
You wind up with an array "@newarray" in which each element contains a reference to an array of at most 15 elements.my @newarray; while (my @array = splice @oldarray,0,15) { push @newarray,\@array; }
Hope this helps.
Liz
|
|---|