Welcome, guest | Sign In | My Account | Store | Cart
import re

def validateEmail(email):

	if len(email) > 7:
		if re.match("^.+\\@(\\[?)[a-zA-Z0-9\\-\\.]+\\.([a-zA-Z]{2,3}|[0-9]{1,3})(\\]?)$", email) != None:
			return 1
	return 0

History

  • revision 5 (22 years ago)
  • previous revisions are not available