Skip to content

Instantly share code, notes, and snippets.

@Sangarshanan
Created July 30, 2018 12:30
Show Gist options
  • Save Sangarshanan/62f529cc98fe15c4d0d07df6074794ec to your computer and use it in GitHub Desktop.
Save Sangarshanan/62f529cc98fe15c4d0d07df6074794ec to your computer and use it in GitHub Desktop.
r'b[aeiou]{2}t' b followed by two vowels, followed by t
r'A\d{3,}' The letter A followed by 3 or more digits
r'[A-Z]{,5}' Zero to five capital letters
r'\w{3,7}' Three to seven “word” characters
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment