Planet PythonBrasil
Mais...
Remove todo o html de uma determinada string.
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