I am currently pursuing rapid developer course and I followed the steps in course module 8.3.1 in which I created the regular expression for Email address validation (Regex is mentioned in module itself). but, while testing the app, I am getting the error as “email id is not valid”.
asked
sanapathi bhaskar
3 answers
0
Hi Sanapthi,
Could you add a Screenshot of that Expression?
answered
Damir Zenkovic
0
here it is
answered
sanapathi bhaskar
0
Hello Sanapathi,
You can use this regex for validating an email [\S\s]*\w+((-|\+|\.)\w+)*@\w+([\.-]?\w+)*(\.\w{2,})+[\S\s]* . We are using it and it works for us