I have a regex for my email validation which is:
^(?!.*\.{2})[a-zA-Z0-9_\.+-]+@[a-zA-Z0-9-]+\.[a-zA-Z0-9-\.]+
I need to be able to prevent the user from entering the below email addresses :
[email protected] (Joe Smith)
How do I modify my existing regex so that it handles the above email addresses?