Re: Appending an small array into a larger array in a foreach loop.

2004-03-08 Thread Jenda Krynicky
From: "Jim Canfield" <[EMAIL PROTECTED]> > I'm having trouble creating an 2 dimensional array that contains the > values of other smaller arrays. For example: > > foreach (@files) { > > #...Get values > @smallarray = ('$value1',$value2','$value3'); Whange the line above to my

Re: Appending an small array into a larger array in a foreach loop.

2004-03-03 Thread Randy W. Sims
On 03/02/04 16:40, Jim Canfield wrote: Greetings, I'm having trouble creating an 2 dimensional array that contains the values of other smaller arrays. For example: foreach (@files) { #...Get values @smallarray = ('$value1',$value2','$value3'); #Append @smallarray to @largearray pu