Beefy Boxes and Bandwidth Generously Provided by pair Networks
Think about Loose Coupling
 
PerlMonks  

Re: Merging arrays

by smls (Friar)
on Jun 27, 2013 at 19:57 UTC ( [id://1041086]=note: print w/replies, xml ) Need Help??


in reply to Merging arrays

The mesh function from the List::MoreUtils module can be used to create a hash out of two arrays, with the n'th values from the two arrays forming the n'th key/value pair in the hash:

use List::MoreUtils qw(mesh); my @array = qw( 111 222 333 444 555 888 ); my @array2 = qw( acct1 acct2 acct3 acct4 acct5 acct8 ); my %merged = mesh @array, @array2;

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others admiring the Monastery: (4)
As of 2024-04-19 00:45 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found