Hi John,
Using this regular expression:
"\w+([-+.]\w+)*@\w+([-.]\w+)*\.([a-zA-Z]{2,4})" and testing it with an
email address of dnlwhite@dtgnet.comabcdefg will come back and
indicate that is a valid email address but the {2,4} should restrict
the values after the '.' to no more than four characters. That's the
first part of the neither I was referring to.
Using the same expression, the email address
dnlwhite@dtgnet.com1234 also returns that it is a valid email address
but the [a-zA-Z] seems to indicate that there should not be anything
other than alphabetical characters after the '.'. That's the second
part of the neither.
However, using the ^ and $ like you indicated solves the problem
for me. Thank you for that!
Doug