Skip to content

Instantly share code, notes, and snippets.

@sgobin
Created April 24, 2020 11:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sgobin/98781615be4e805af440a1cc8d9d62bb to your computer and use it in GitHub Desktop.
Save sgobin/98781615be4e805af440a1cc8d9d62bb to your computer and use it in GitHub Desktop.
Extrai emails de uma string
import re
texto = 'aqui vai a string com os meus@emails.com.br"
emails = re.findall(r'[\w\.-]+@[\w\.-]+', texto)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment