首页 >后端开发 >Python教程 >如何解码 Python 字符串中的 HTML 实体?

如何解码 Python 字符串中的 HTML 实体?

Barbara Streisand
Barbara Streisand原创
2024-12-14 05:33:09227浏览

How to Decode HTML Entities in Python Strings?

如何解码Python字符串中的HTML实体?

使用Beautiful Soup 3解析HTML时,经常会出现HTML实体并需要解码。这可以使用 html.unescape() 或 HTMLParser.unescape() 函数来完成。

Python 3.4

使用 html.unescape():

import html
html.unescape('£682m')

Python 2.6-3.3

来自 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中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn