I've been trying to look for the code to match a regular expression on an email for a project. These are the requirements:
Email must be in the form of acct@domain
I have figured out the acct part with the code:
if re.search("^[a-zA-z0-9]+[a-zA-z0-9-_]*$|^[a-zA-z0-9]+[a-zA-z0-9-_]+[\.]{1}[a-zA-z0-9]{2,}$", email):
print "valid!"
Also the domain:
if re.search("^[a-zA-z0-9]+[a-zA-z0-9-_]+[\.]{1}[a-zA-z0-9]{2,}$", email):
print "valid!"
My problem is that i cannot figure out how to group them together and put an @ sign
I have tried the following but it doesn't seem to work.
if re.search("(^[a-zA-z0-9]+[a-zA-z0-9-_]*$|^[a-zA-z0-9]+[a-zA-z0-9-_]+[\.]{1}[a-zA-z0-9]{2,}$)@(^[a-zA-z0-9]+[a-zA-z0-9-_]+[\.]{1}[a-zA-z0-9]{2,}$)", email):<br>
print "valid!
"
IT DOESN'T WORK! I can't get it to ever match. If you have suggestions that make the code less nooby please do let me know!
Use a non-capturing group to combine both the regexes.
DEMO
Regular Expression: