I'm comparing passwords in a script I'm writing.
I get the user ID and password like this:
<t> ($userid, $pword) = (split(/\|/, $record));
<t> chop($pword);
The problem is that chop chops off the last letter of the last users password. How do I fix this. Any help or suggestions are greatly aprreciated. Thanks.