Python相当于PHP的strip_tags?
Python相当于PHP的strip_tags?
Python相当于PHP的strip_tags?
在Python标准库中没有这样的东西。这是因为Python是一种通用语言,而PHP最初是一种面向Web的语言。
不过,您有 3 种解决方案:
re.sub(r'<[^>]*?>', '', value)
from BeautifulSoup import BeautifulSoup
soup = BeautifulSoup(htmltext)
''.join([e for e in soup.recursiveChildGenerator() if isinstance(e,unicode)])