I'm trying to create a regex that doesn't allow digits or spaces in the beginning. I've tried doing something like this:
^[\S][\D][\w+_.-]+@{1}[\w_.-]+\.{1}[a-zA-z]*$
However, when I use 4test@example.com
it says it's an email, but when I use 4test@example.com
it says it's not an email. In both cases, I'd like for it to say it's not an email. There shouldn't be a space or digit, how can I combine these two: [\S][\D]
so that it works correctly?