6
ถอดรหัสเอนทิตี HTML ในสตริง Python หรือไม่
ฉันกำลังแยก HTML บางตัวด้วย Beautiful Soup 3 แต่มันมีเอนทิตี HTML ที่ Beautiful Soup 3 ไม่ได้ถอดรหัสให้ฉันโดยอัตโนมัติ: >>> from BeautifulSoup import BeautifulSoup >>> soup = BeautifulSoup("<p>&pound;682m</p>") >>> text = soup.find("p").string >>> print text &pound;682m ฉันจะถอดรหัสเอนทิตี HTML textเพื่อรับ"£682m"แทนได้"&pound;682m"อย่างไร
266
python
html
html-entities