16
Views
3
Comments
Solved
How to validate Email ISO format?
Question
Application Type
Reactive

Hi there,

I am wondering how to validate email in ISO format where it must have an @ and dot.

For example: john@company.com employee@office.co.id 

both are correct

regard 

2024-03-22 09-17-23
Chandra Vikas Sharma
Solution

Hi ,

 you can use below reqex for email validation in ISO format.


^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}$ 

Thanks

CV

2024-03-22 09-17-23
Chandra Vikas Sharma
Solution

Hi ,

 you can use below reqex for email validation in ISO format.


^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\.[a-zA-Z]{2,}$ 

Thanks

CV

2019-01-07 16-04-16
Siya
 
MVP
Solution
Community GuidelinesBe kind and respectful, give credit to the original source of content, and search for duplicates before posting.