Beefy Boxes and Bandwidth Generously Provided by pair Networks
XP is just a number
 
PerlMonks  

Re: Efficient way to print 2 columns from 2 Array of Arrays next to each other

by BrowserUk (Patriarch)
on Oct 25, 2016 at 16:56 UTC ( [id://1174710]=note: print w/replies, xml ) Need Help??


in reply to Efficient way to print 2 columns from 2 Array of Arrays next to each other

How about:

open TEMP, ">TMPFILES/$i.tmpfile" or die $!; printf TEMP "%s\t%s\n", $AoA_first[ $_ ], $AoA_second[ $_ ] for 0 .. $ +#AoA_first;

With the rise and rise of 'Social' network sites: 'Computers are making people easier to use everyday'
Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
"Science is about questioning the status quo. Questioning authority". I knew I was on the right track :)
In the absence of evidence, opinion is indistinguishable from prejudice.
  • Comment on Re: Efficient way to print 2 columns from 2 Array of Arrays next to each other
  • Download Code

Replies are listed 'Best First'.
Re^2: Efficient way to print 2 columns from 2 Array of Arrays next to each other
by Anonymous Monk on Oct 25, 2016 at 17:08 UTC
    Thank you very much!

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others drinking their drinks and smoking their pipes about the Monastery: (5)
As of 2024-04-24 01:22 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found