Re: Email validation syntax

2002-05-01 Thread Randal L. Schwartz
> "Shane" == Shane McElwee <[EMAIL PROTECTED]> writes: Shane> Below I've a regular expression that checks the syntax of an email address. Shane> The problem I'm having is with the underscore "_" . I've tried some Shane> different forms of syntax but I know its something simple I'm missing. I

Re: Email validation syntax

2002-05-01 Thread drieux
On Wednesday, May 1, 2002, at 12:43 , McElwee, Shane wrote: > Below I've a regular expression that checks the syntax of an email > address. > The problem I'm having is with the underscore "_" . I've tried some > different forms of syntax but I know its something simple I'm missing. I > think I'

Re: Email validation syntax

2002-05-01 Thread John W. Krahn
Shane McElwee wrote: > > Below I've a regular expression that checks the syntax of an email address. > The problem I'm having is with the underscore "_". The \w character class includes the underscore character (\w eq [a-zA-Z0-9_]) > I've tried some > different forms of syntax but I know its so

Re: Email validation syntax

2002-05-01 Thread Kevin Meltzer
Take a look at Email::Valid Cheers, Kevin On Wed, May 01, 2002 at 03:43:07PM -0400, McElwee, Shane ([EMAIL PROTECTED]) said something similar to: > Below I've a regular expression that checks the syntax of an email address. > The problem I'm having is with the underscore "_" . I've tried some >