Hi,

You can also try use Regexp::Common::Email::Address.

See
http://search.cpan.org/~cwest/Regexp-Common-Email-Address-1.01/lib/Regexp/Common/Email/Address.pm


Yaron Kahanovitch
----- Original Message -----
From: "Andrew Curry" <[EMAIL PROTECTED]>
To: "Andrew Curry" <[EMAIL PROTECTED]>, "Omega -1911" <[EMAIL PROTECTED]>, 
"beginners perl" <beginners@perl.org>
Sent: Wednesday, October 24, 2007 10:13:52 AM (GMT+0200) Asia/Jerusalem
Subject: RE: Trying to figureout regex please help

Or If you want to be really silly

http://ex-parrot.com/~pdw/Mail-RFC822-Address.html

 

-----Original Message-----
From: Andrew Curry [mailto:[EMAIL PROTECTED] 
Sent: 24 October 2007 09:13
To: Omega -1911; beginners perl
Subject: RE: Trying to figureout regex please help

A better one for email may be

[EMAIL PROTECTED]
\.]*[a-zA-Z]$ 

-----Original Message-----
From: Omega -1911 [mailto:[EMAIL PROTECTED]
Sent: 24 October 2007 08:48
To: beginners perl
Subject: Re: Trying to figureout regex please help

1. ^([a-zA-Z0-9_\-\.]+)@
Can contain a group of letters (case insensitive) or numbers (0-9), a
period, underscore, hyphen and the @ sign is required.

2. ([a-zA-Z0-9_\-\.]+)\.
Can contain a group of letters (case insensitive) or numbers (0-9), a
period, hyphen, underscore and end with a period.

3. ([a-zA-Z]{2,5})$
Can contain a group of letters (case insensitive), and must be between
2-5 characters in length.

Hence: [EMAIL PROTECTED] (or .tv, .net, .biz)

--
To unsubscribe, e-mail: [EMAIL PROTECTED] For additional
commands, e-mail: [EMAIL PROTECTED] http://learn.perl.org/



This e-mail is from the PA Group.  For more information, see
www.thepagroup.com.

This e-mail may contain confidential information.  Only the addressee is
permitted to read, copy, distribute or otherwise use this email or any
attachments.  If you have received it in error, please contact the sender
immediately.  Any opinion expressed in this e-mail is personal to the sender
and may not reflect the opinion of the PA Group.

Any e-mail reply to this address may be subject to interception or
monitoring for operational reasons or for lawful business practices.





--
To unsubscribe, e-mail: [EMAIL PROTECTED] For additional
commands, e-mail: [EMAIL PROTECTED] http://learn.perl.org/



This e-mail is from the PA Group.  For more information, see
www.thepagroup.com.

This e-mail may contain confidential information.  Only the addressee is
permitted to read, copy, distribute or otherwise use this email or any
attachments.  If you have received it in error, please contact the sender
immediately.  Any opinion expressed in this e-mail is personal to the sender
and may not reflect the opinion of the PA Group.

Any e-mail reply to this address may be subject to interception or
monitoring for operational reasons or for lawful business practices.





-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
http://learn.perl.org/




-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
http://learn.perl.org/


Reply via email to