in reply to Re: Re: mapping two arrays into anon hash
in thread mapping two arrays into anon hash
But here's another solution that doesn't use any extra variables beyond $_:
(It's still not as clean as using the hash slice, IMO, but if that's what you want...)use Data::Dumper; my @names = qw ( web email stuff ); my @values = qw( 33 44 55 ); my $ref = { map { $names[$_] => $values[$_] } (0..$#names) }; print Dumper $ref;
-----------------------------------------------------
Dr. Michael K. Neylon - mneylon-pm@masemware.com
||
"You've left the lens cap of your mind on again, Pinky" - The Brain
"I can see my house from here!"
It's not what you know, but knowing how to find it if you don't know that's important
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: mapping two arrays into anon hash
by agoth (Chaplain) on Jan 08, 2002 at 18:02 UTC |