Skip to content

Instantly share code, notes, and snippets.

@VincentVetsch
Forked from w3ddd/regex_multiline.py
Created August 25, 2012 01:08
Show Gist options
  • Save VincentVetsch/3458279 to your computer and use it in GitHub Desktop.
Save VincentVetsch/3458279 to your computer and use it in GitHub Desktop.
Python: Multiline Expression Matching
#http://stackoverflow.com/questions/587345/python-regular-expression-matching-a-multiline-block-of-text
re.compile(r"^(.+)\n((?:\n.+)+)", re.MULTILINE)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment