I am ready to tear my hair out. I have been debugging for 5 hours now and I have found the bug in my morass of code, but I don't understand why it is occuring...
Here is a sample script that demonstrates the bug.
My element 00 in $hash doesn't print when I know it is there. I want to believe this is a perl bug, but I suspect it is really my not understanding how 00 is getting evaluated or something.
@foo = (0,1);
$hash{00} = "data";
$hash{10} = "moredata";
print '$hash{00} is ', $hash{00} , "\n";
print '$hash{$foo[0] . "0"} is ', $hash{$foo[0] . "0"}, "\n";
print '$hash{$foo[1] . "0"} is ', $hash{$foo[1] . "0"}, "\n";
print '$hash{10} is ', $hash{10} , "\n";
The results are:
NOTE LINE 2 after is there is nothing!
$hash{00} is data
$hash{$foo[0] . "0"} is
$hash{$foo[1] . "0"} is moredata
$hash{10} is moredata
What is going on?
-monkfish
The fishy monk.
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.