I found 4 problems with your code:
2 syntax errors
1 logical error
1 formatting for this site error
syntax error #1:
you have
push @{$p2i{sp}}, $ipr; # $ missing for key reference
when you should have
push @{$p2i{$sp}}, $ipr;
syntax error #2:
you have
print "$key\t$p2i{$key}\n";
when you should have
print "$key\t@ {$p2i{$key} }\n"; # need @ to dereference array
logical error #1:
your use of
uc() for key lookups will return nothing because the hash keys, as entered from the text file, are all lowercase (at least in the sample you provided).
formatting error #1:
you have
if (exists $p2i{$user}) {
print "$user is in the hash. \n";if (exists $p2i{$user}) {
print "$user is in the hash. \n";
when you should have
if (exists $p2i{$user}) {
print "$user is in the hash. \n";
I corrected the above and the code ran fine
hope this helps,
davidj
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.