in reply to RE: eq is being stubborn
in thread eq is being stubborn

I use that delimiter trick often, and when I'm really paranoid (or I know my strings have unpleasant characters in them) I do something like:
print unpack('H*',$usrfile{$password}) ."\n". unpack('H*',$password);
And I can usually see the difference then. I hope!