Tyson Sommer wrote:
Those are some good points. I should definitely strip any leading "-"s. This
appears to work:
$input =~ s/^-*|[^A-Za-z0-9.-_]//g;
That could be simplified to:
$input =~ s/^-*|[^a-z.-_]//g;
Because the range [.-_] includes uppercase letters and numbers unless you
real
> -Original Message-
> From: Jay [mailto:[EMAIL PROTECTED]
> Sent: Friday, February 18, 2005 3:42 PM
> To: [EMAIL PROTECTED]
> Subject: Re: Securing user data
>
> On Fri, 18 Feb 2005 14:33:24 -0600, Tyson Sommer
> <[EMAIL PROTECTED]> wrote:
> > A