I just really need help with building a regex of this pattern [email protected]
Starts with at least 3 char not @
then @ (only one)
at least 3 char that are not . or @
and than one .
than 3 char that are not . or @
This is what I played with but it doesnt work
/^([a-zA-Z0-9._-]{3,})\.@([a-zA-Z0-9.-]{3,*})\.[a-zA-Z]{3,*}$/
{3,}which is correct, but then later you put{3,*}twice.../[^@]{3,}@[^@.]{3,}\.[^@.]{3}/