Beefy Boxes and Bandwidth Generously Provided by pair Networks
There's more than one way to do things
 
PerlMonks  

Re: issue with print/join 2 arrays

by RichardK (Parson)
on Apr 29, 2014 at 17:08 UTC ( [id://1084357]=note: print w/replies, xml ) Need Help??


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.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1084357]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others meditating upon the Monastery: (2)
As of 2024-04-20 03:10 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found