associação pythonbrasil[11] django zope/plone planet Início Logado como (Entrar)

StripHtml

Receita: Strip HTML

Remove todo o html de uma determinada string.

Código

   1 def strip_html(text):
   2     """
   3     Remove all html tags from a given string.
   4     """
   5     import re
   6     s = re.sub( '<[^>]*>', '', text)
   7     print s

Volta para CookBook.


ralobao