使用Beautiful Soup 3解析HTML时,经常会出现HTML实体并需要解码。这可以使用 html.unescape() 或 HTMLParser.unescape() 函数来完成。
使用 html.unescape():
import html html.unescape('£682m')
来自 Python 2.6-2.7 中的 HTMLParser或者Python 3中的html.parser,unescape():
from html.parser import HTMLParser parser = HTMLParser() print(h.unescape('£682m'))
或者,使用六个兼容性库:
from six.moves.html_parser import HTMLParser parser = HTMLParser() print(h.unescape('£682m'))
以上是如何解码 Python 字符串中的 HTML 实体?的详细内容。更多信息请关注PHP中文网其他相关文章!