Need regex which will detect first.second@domain.tld
but not detect on ([a-z0-9A-Z])@domain.tld
valid: abc123XYZ@domain.tld
invalid: abc12.de456@domain.tld
I recognize a period is legal preceeding @
in an email address but need to detect that condition.