2009 May 19 6:52 PM
I need a RegEx that validate the email, ie within email id
ie only one @, at least one character before the @, before the period and after.
a®
2009 May 19 7:00 PM
Is this the same question as one of your old question:
Regards,
Naimesh Patel
2009 May 19 7:27 PM
2009 May 19 7:28 PM
2009 May 19 7:29 PM
2009 May 19 7:29 PM
2009 May 19 7:30 PM
2009 May 19 8:11 PM
Today threads behaving like crazy, I have closed this thread several times, still found open
Naimesh,
My previous threads related validating email format the current question i have asked for validating the postion of @ and (dot) in the mail id.
Here is RegEx
^[^@]+@[^@]+.[^@]+$a®
2009 May 19 7:24 PM
Naimesh,
This time requirement little different. In my previous post of RegEx i have need to validate on the format of mail id. But this time its for validating (at the rate of) and (dot) position in the mail id
Here is Regex
^[^@]+@[^@]+.[^@]+$
Thread closed
a®
2009 May 19 7:32 PM
Hello,
Can you please share any documentation on REGEX, how to use it ?
I tried to find help on this in SDN, but did not help me.
Thanks for your support.
BR,
Suhas
2009 May 19 7:35 PM
I learned RegEx from this site
http://www.regular-expressions.info/
and in SAP check this DEMO TOY program, and practice on it
DEMO_REGEX_TOY
a®