in reply to issue with print/join 2 arrays

But what should happen when the length of the first array isn't a multiple of 3?

Replies are listed 'Best First'.
Re^2: issue with print/join 2 arrays
by juanito23 (Novice) on Apr 29, 2014 at 18:37 UTC
    Hi!, thanks for all replies, but yes.. The arrays I will have to print have more than 1000 rows per 3 columns... Any way to do it then? One other thing.. What if the length of both arrays are different? Thanks!!

      Just adapt the solution I gave in my other post:

      say join ' ', map splice( $_, 0, 3 ), \@array1, \@array2 while @array1 or @array2;

      If you need to access your original arrays later, make copies and destroy these instead.