Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

RegEx

former_member194669
Active Contributor
0 Likes
1,065

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.

10 REPLIES 10
Read only

naimesh_patel
Active Contributor
0 Likes
1,035

Is this the same question as one of your old question:

Regards,

Naimesh Patel

Read only

0 Likes
1,035

Multiple replies posted ,

Read only

0 Likes
1,035

Multiple replies posted ,

Read only

0 Likes
1,035

Multiple replies posted ,

Read only

0 Likes
1,035

Multiple replies posted ,

Read only

0 Likes
1,035

Multiple replies posted ,

Read only

0 Likes
1,035

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

^[^@]+@[^@]+.[^@]+$

Read only

former_member194669
Active Contributor
0 Likes
1,035

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

Read only

SuhaSaha
Product and Topic Expert
Product and Topic Expert
0 Likes
1,035

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

Read only

0 Likes
1,035

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