Re: Trying to figure the Regex Please Help

2007-10-24 Thread Chas. Owens
On 10/24/07, Andrew Curry <[EMAIL PROTECTED]> wrote: > ^([a-zA-Z0-9_\-\.]+ # any character repeated from the set memorized into $1 > )@ # followed by an @ > ([a-zA-Z0-9_\-\.]+) # any character repeated from the set memorized into $2 > \.([a-zA-Z]{2,5})$ # any alphabetic character in both cases 2 -

RE: Trying to figure the Regex Please Help

2007-10-24 Thread Andrew Curry
address -Original Message- From: newBee [mailto:[EMAIL PROTECTED] Sent: 24 October 2007 01:07 To: beginners@perl.org Subject: Trying to figure the Regex Please Help ^([a-zA-Z0-9_\-\.]+)@([a-zA-Z0-9_\-\.]+)\.([a-zA-Z]{2,5})$ -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Trying to figure the Regex Please Help

2007-10-24 Thread newBee
^([a-zA-Z0-9_\-\.]+)@([a-zA-Z0-9_\-\.]+)\.([a-zA-Z]{2,5})$ -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] http://learn.perl.org/