Why does this work
my %hash = map { $_ => "stuff_$_" } qw(asdf qwert zxcv);
But this
my %hash = map { "stuff_$_" => $_ } qw(asdf qwert zxcv);
results in a syntax error (
syntax error ... near "} qw(asdf qwert zxcv)")
The only difference is the order of the values in the BLOCK.
perl 5.8.5
FOLLOW UP:
Since I don't particularly like any of the solutions to this problem that have been proposed (although most do work) I decided to follow the advice of a
co-worker
Back in my day we used 'foreach' and we liked it!
It would seem to me that the more common case would be using map to generate key-values pairs for each iteration instead of an anonymous hash for each. So why not make the later have to use something extra... for instance:
my %hash = map { {"stuff_$_" => $_} } qw(asdf qwert zxcv);
would easily tell the parser it's an anon-hash. So anything with a '{' is a block until otherwise told it is not.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
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, details, 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, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
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.