http://www.perlmonks.org?node_id=952747


in reply to Re: Problem with hashes
in thread Problem with hashes

I've checked manually for a few of the keys in the hash
file and the exist. I know for a fact that they all do
exist as I used them to generate the hash in the first place.

Replies are listed 'Best First'.
Re^3: Problem with hashes
by Ratazong (Monsignor) on Feb 09, 2012 at 15:16 UTC
    Rule one for debugging: checking is better than knowing for sure. So try copying the following code before your print and look what is happening ...:
    if (exists ($hash{$word[-1]})) { print("$word[-1] OK\n"); } else { print("$word[-1] isn't in the hash\n"); }