Skip to content

Instantly share code, notes, and snippets.

@pvalencia
Created September 21, 2010 21:51
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 pvalencia/590647 to your computer and use it in GitHub Desktop.
Save pvalencia/590647 to your computer and use it in GitHub Desktop.
import re
HTML_REMOVER = lambda html: re.compile(r'<.*?>').sub('', html)
assert HTML_REMOVER('<html><body>foo <strong>bar</strong></body></html>') == 'foo bar'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment