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, 6466👍, 0💬
Popular Posts:
How to capture the Baidu spider entries from Web log file? Here are some Web log file entries:127.0....
How to perform a basic validation on email address using a regular expression? For example, "test+em...
All credit card numbers issued by JCB have 3 sets of numbers: JCB cards start with 2131 have 15 digi...
How to capture the Baidu spider entries from Web log file? Here are some Web log file entries:127.0....
Are you having problems using regular expressions when processing text strings in your applications ...