Skip to content

Instantly share code, notes, and snippets.

@nokados
Created June 3, 2018 20:56
Show Gist options
  • Save nokados/c1e62d7b38e5fc80cb1eb971c3721e6b to your computer and use it in GitHub Desktop.
Save nokados/c1e62d7b38e5fc80cb1eb971c3721e6b to your computer and use it in GitHub Desktop.
Closure. Check if a string includes a pattern.
def has(expr):
return lambda x: bool(re.search(expr, x, flags=re.IGNORECASE|re.MULTILINE|re.DOTALL))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment