Greetings,
I have 2 flat files (both in similar format) as follows :
012 00003200Thanksgiving road Thanksgiving Town TT022 A
+ B S
I am reading this into 2 hashs : %File2 and %File3 and the key of hash is "00003200".
From the 3rd flat file, I have the same value "00003200" and for this value, I need to go and look into %File2 and pick up all the values associated with the key.
Question:
When I do the following :
@line = parse_line($ln) # this will parse the line using substr and sa
+ve each value in array.
if (exists $File2{$line[3]} ) {
print "Found the match ",Dumper($File2{$line[3]}),"\n";
} else {
print "Could not find the match \n";
}
# Tried the following and it does not work either :
if (exists $File2{"$line[3]"} ) {
print "Found the match ",Dumper($File2{"$line[3]"}),"\n";
} else {
print "Could not find the match \n";
}
The above statement always fails. When I do a simple print before if statement by giving actual value of "00003200" , I do see values.
What am I missing?
Thanks for help in advance!!
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.