Beefy Boxes and Bandwidth Generously Provided by pair Networks
laziness, impatience, and hubris
 
PerlMonks  

Re: Creating a hash from arrays

by Eily (Monsignor)
on Nov 02, 2013 at 21:34 UTC ( [id://1060981]=note: print w/replies, xml ) Need Help??


in reply to Creating a hash from arrays

You could also use List::MoreUtils, either:

@keys = pairwise {return "$a $b"} @fname, @lname; @hash{@keys} = @state;
or
my $iter = each_array @fname, @lname, @state; while( ($firstName, $lastName, $state) = $iter->() ) { $hash{"$firstName $lastName"} = $state; }

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1060981]
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: (6)
As of 2024-04-23 12:30 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found