Re: just bragging

2002-01-20 Thread Jonathan E. Paton
> Guess what I found!!! and it works (mad scientist > laugh) > > $password=~tr/A-Z/a-z/; > $password=~tr/a-z0-9/_/c; I think you really meant: ($password = lc $password) =~ tr/a-z0-9/_/c; Jonathan Paton __ Do You Yahoo!? Everything you'll

just bragging

2002-01-19 Thread Luinrandir Hernson
guess what I found!!! and it works (mad scientist laugh) $password=~tr/A-Z/a-z/;##changes everything to lowercase $password=~tr/a-z0-9/_/c; instead of ##$password=~s/@/\_/g; ##removes"@" ##$password=~s/\./\_/g; ##removes"."