in reply to Re: How can I keep the values in the array?
in thread How can I keep the values in the array?

Thank you so much! It works!!! Young
  • Comment on Re: Re: How can I keep the values in the array?

Replies are listed 'Best First'.
Re: Re: Re: How can I keep the values in the array?
by revdiablo (Prior) on Mar 03, 2004 at 21:33 UTC

    It may work, but it also copies the @allrows array again and again for each loop iteration. This is probably a Bad Thing (tm). I would suggest using push to add new items to the end of an existing array. I would also suggest checking out Limbic~Region's reply. His code actually creates an array of arrays, which may preserve the original structure of the data more accurately.