>I'm using the email address are a beginning password therefore.... >code below > >$password=~s/@/\_/g; ##removes"@" >$password=~s/\./\_/g; ##removes"." > >##????????? >$password=~s/[^a-z^A-Z^0-9]/\-/g; ##check for a-z, A-Z, 1-0 ??????? >##???????? > >is there a better way?
How about: $password=~s/@|\./_/g; $password=~s/\W/-/g; Shawn -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]