Skip to content

Instantly share code, notes, and snippets.

@OlegKorn
Created November 25, 2024 05:23
Show Gist options
  • Save OlegKorn/26f00c94e8d2b7a37381bf642fce40fa to your computer and use it in GitHub Desktop.
Save OlegKorn/26f00c94e8d2b7a37381bf642fce40fa to your computer and use it in GitHub Desktop.
re - finding email in python
email_re = r"^[a-z0-9!#$%&'*+/=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+/=?^_`{|}~-]+)*@(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?$"
email = re.search(email_re, str)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment