首頁 >後端開發 >Python教學 >如何解碼 Python 字串中的 HTML 實體?

如何解碼 Python 字串中的 HTML 實體?

Barbara Streisand
Barbara Streisand原創
2024-12-14 05:33:09286瀏覽

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 月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