08-28-2008, 03:54 PM
09-03-2008, 04:26 AM
*@*.*
02-03-2009, 02:14 PM
Hi
This is the reg Exp for E-Mail Address
".*@.*\.com"
Thanks
VENKATA
This is the reg Exp for E-Mail Address
".*@.*\.com"
Thanks
VENKATA
06-21-2009, 03:23 PM
Hi,
For example
if your email Id is in the following format
abc.xyz@pqr.com
then use this : (\w+)(\.)(\w+)(\@)(\w+)(\.)(w+)
if your email Id is in the following format
abc_xyz@pqr.com
then use this : (\w+)(\_)(\w+)(\@)(\w+)(\.)(w+)
if your email Id is in the following format
abc.xyz@pqr.com or abc_xyz@pqr.com or abc-xyz@pqr.com
or abc@pqr.com
then use this :
((\w+)(\.|\_|\-)(\w+)|(\w+))(\@)(\w+)(\.)(w+)
Thanks,
Raja
For example
if your email Id is in the following format
abc.xyz@pqr.com
then use this : (\w+)(\.)(\w+)(\@)(\w+)(\.)(w+)
if your email Id is in the following format
abc_xyz@pqr.com
then use this : (\w+)(\_)(\w+)(\@)(\w+)(\.)(w+)
if your email Id is in the following format
abc.xyz@pqr.com or abc_xyz@pqr.com or abc-xyz@pqr.com
or abc@pqr.com
then use this :
((\w+)(\.|\_|\-)(\w+)|(\w+))(\@)(\w+)(\.)(w+)
Thanks,
Raja
(06-21-2009 03:23 PM)Raja Wrote: [ -> ]Guys, Sorry I forgot to attach "\" in the following Patterns.
The Updated one is as follows >
For example
if your email Id is in the following format
abc.xyz@pqr.com
then use this : (\w+)(\.)(\w+)(\@)(\w+)(\.)(\w+)
if your email Id is in the following format
abc_xyz@pqr.com
then use this : (\w+)(\_)(\w+)(\@)(\w+)(\.)(\w+)
if your email Id is in the following format
abc.xyz@pqr.com or abc_xyz@pqr.com or abc-xyz@pqr.com
or abc@pqr.com
then use this :
((\w+)(\.|\_|\-)(\w+)|(\w+))(\@)(\w+)(\.)(\w+)
Thanks,
Raja
08-13-2009, 02:22 PM
(06-21-2009 03:23 PM)Raja Wrote: [ -> ]Hi,
For example
if your email Id is in the following format
abc.xyz@pqr.com
then use this : (\w+)(\.)(\w+)(\@)(\w+)(\.)(w+)
if your email Id is in the following format
abc_xyz@pqr.com
then use this : (\w+)(\_)(\w+)(\@)(\w+)(\.)(w+)
if your email Id is in the following format
abc.xyz@pqr.com or abc_xyz@pqr.com or abc-xyz@pqr.com
or abc@pqr.com
then use this :
((\w+)(\.|\_|\-)(\w+)|(\w+))(\@)(\w+)(\.)(w+)
Thanks,
Raja
(06-21-2009 03:23 PM)Raja Wrote: [ -> ]Guys, Sorry I forgot to attach "\" in the following Patterns.
The Updated one is as follows >
For example
if your email Id is in the following format
abc.xyz@pqr.com
then use this : (\w+)(\.)(\w+)(\@)(\w+)(\.)(\w+)
if your email Id is in the following format
abc_xyz@pqr.com
then use this : (\w+)(\_)(\w+)(\@)(\w+)(\.)(\w+)
if your email Id is in the following format
abc.xyz@pqr.com or abc_xyz@pqr.com or abc-xyz@pqr.com
or abc@pqr.com
then use this :
((\w+)(\.|\_|\-)(\w+)|(\w+))(\@)(\w+)(\.)(\w+)
Thanks,
Raja
Hi Ganesh,
Use this below Regular Expression pattern to match any valid email id.
sPattern="\b[A-Z0-9._%-]+@[A-Z0-9._%-]+\.[A-Z]{2,4}\b"
Thanks,
Azeem