I want an existing email regex to fail when entering a period (".") before the @.
This is the regex I have right now:
^[a-zA-Z]+[a-zA-Z0-9.][email protected]$
These should pass:
[email protected]
[email protected]
But these shouldn't:
[email protected]
[email protected]
The first case starting with period is handled but second case is not.