Other Resources:
Email addresse basic validation
How to perform a basic validation on email address using a regular expression? For example, "test+email@fexample.com" is an invalid email address.
✍: Guest
![]()
To perform a basic validation on email addresses, try this regular expression:
^\D\w+(\.\w+)*[@]\w+(\.\w+)*\.[a-zA-Z]{2,4}$
2013-01-27, 0👍, 0💬
Popular Posts:
Are you having problems using regular expressions when processing text strings in your applications ...
How to write a regular expression to validate GUID (Globally Unique IDentifier) or UUID (Universally...
How to capture the MSN (Microsoft Network) bot entries from Web log file? Here are some Web log file...
Are you having problems using regular expressions when processing text strings in your applications ...
Are you having problems using regular expressions when processing text strings in your applications ...