Skip to content

Instantly share code, notes, and snippets.

@fabsta
Created August 28, 2016 20:27
Show Gist options
  • Save fabsta/5bf519867e3b34ce0772c8a9b8a9e424 to your computer and use it in GitHub Desktop.
Save fabsta/5bf519867e3b34ce0772c8a9b8a9e424 to your computer and use it in GitHub Desktop.

Regex

import re
pattern = re.compile("\w.?\w+@\w[.\w+]")

finds subpatterns

good_email = filter(lambda x: pattern.search(x), emails)

needs to match re completely

good_email = filter(lambda x: pattern.match(x), emails)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment