http://qs321.pair.com?node_id=484651


in reply to Simple if Statement Not Acting Right?

Your print is not precise enough to catch the problem. It doesn't show you if any variable value you printed has empty space in it or not.

Use print ".... [$userName]\n" and print "... [$usernameInfo{$userName}]\n" instead to be more precise.

I suspect that your hash value has empty spaces at the end.

Replies are listed 'Best First'.
Re^2: Simple if Statement Not Acting Right?
by o2bwise (Scribe) on Aug 18, 2005 at 01:10 UTC
    That's it!!! Thanks, man!

    I just learned something. Nice simple test.