It's an optimization that shines its ugly head through. When you use $1 (or any of its friends), no copy is actually made - there's a pointer that still needs to be followed (a pointer into the original string). However, since you are doing another match before querying
$hash{a}, the structure in $1 has been overwritten. You have to treat $1 as it were a reference (or maybe alias would be a better term).
The "$1" forces a copy. Or you could swap the assignment:
hash = (
b => ($b =~ /\d/ ? 1 : 0),
a => ($b =~ /(\d+)/ ? $1 : 0),
);
Or not use $1:
hash = (
a => ($b =~ /(\d+)/)[0] || 0,
b => ($b =~ /\d/ ? 1 : 0)
);
It's related to the problem when passing $1 to a subroutine:
$ perl -wE 'sub f {say @_} 3 =~ /(\d)/; f $1'
3
$ perl -wE 'sub f {"1" =~ "1"; say @_} 3 =~ /(\d)/; f $1'
Use of uninitialized value $_[0] in say at -e line 1.
$ perl -wE 'sub f {"1" =~ "1"; say @_} 3 =~ /(\d)/; f "$1"'
3
$
$1 really is valid only till the next successful match.
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.