The simple answer
my %hash=@keys;
already does what you want. =)
UPDATES
The long answer!
Regarding your initial question: "unfortunately not"!
Perl5 doesn't provide a built-in way to have multiple loop vars in foreach.
There are several workarounds with while loops:
- destructive with splice or multiple shifts
- iterator with List::MoreUtils::natatime() or pairwise()
- classic with c-stile for with two index-increments per iteration
but these workarounds have been discussed so often in the monastery that I'd prefer to link them after finding them.
Splice
In this case (ignoring the solution on top) I would do something with splice:
DB<113> @array = (a =>1,b=>2)
=> ("a", 1, "b", 2)
DB<114> while ( my ($key,$val) = splice(@array,0,2) ) {
$hash{$key}=$val;
}
DB<115> \%hash
=> { a => 1, b => 2 }
DB<116> \@array # emptied!
=> []
You need to copy @array in case I wanna keep the initial elements after the loop.
Older discussions
googling the monastery for splice+natatime
Errata
Originally I proposed this code
while(@array) {
$hash{shift @array} = shift @array;
}
But I was bitten by precedence, the code does it the wrong way around:
DB<108> @array = ( a => 1, b => 2 )
=> ("a", 1, "b", 2)
DB<109> $hash{shift @array} =shift @array while @array
DB<110> \%hash
=> { 1 => "a", 2 => "b" }
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.