import re
regex = re.compile(r"(?P<User>[a-zA-Z1-9\._]+)@(?P<Domain>[a-zA-Z1-9]+)\.(?P<D_EXT>[a-zA-Z]+)")
test_str = ("my email is andy@delusion.org\n"
"my school email is andrew.newton18@mydiscoveryk8.org\n"
"daddy's email is mike@delusion.org\n"
"Zach H's email is hitchcockzach@gmail.com\n"
"Zach R's email is zrambler441@yahoo.com\n"
"Ryan's email is ryanmeth@icloud.com\n"
"Mateo's email is mateo@relhok.com\n"
"Kieran's email is kieran.derrington@gmail.com \n"
"Tyler's email is tbone.vaughn@icloud.com\n\n"
"DON'T WORK:\n\n"
"...@.......\n"
"secreretface-2@loans.com\n")
subst = "${User} at ${Domain}.${D_EXT}\\n"
result = regex.sub(subst, test_str)
if result:
print(result)
Please keep in mind that these code samples are automatically generated and are not guaranteed to work. If you find any syntax errors, feel free to submit a bug report. For a full regex reference for Python, please visit: https://docs.python.org/3/library/re.html