当前位置:  开发笔记 > 编程语言 > 正文

在Python中将XML/HTML实体转换为Unicode字符串

如何解决《在Python中将XML/HTML实体转换为Unicode字符串》经验,为你挑选了7个好方法。

我正在做一些网页抓取,网站经常使用HTML实体来表示非ascii字符.Python是否有一个实用程序,它接受带有HTML实体的字符串并返回unicode类型?

例如:

我回来了:

ǎ

代表带有音标的"ǎ".在二进制中,这表示为16位01ce.我想将html实体转换为值 u'\u01ce'



1> dF...:

Python有htmlentitydefs模块,但是这不包括unescape HTML实体的功能.

Python开发人员Fredrik Lundh(elementtree的作者,除其他外)在他的网站上有这样的功能,它与十进制,十六进制和命名实体一起使用:

import re, htmlentitydefs

##
# Removes HTML or XML character references and entities from a text string.
#
# @param text The HTML (or XML) source text.
# @return The plain text, as a Unicode string, if necessary.

def unescape(text):
    def fixup(m):
        text = m.group(0)
        if text[:2] == "&#":
            # character reference
            try:
                if text[:3] == "&#x":
                    return unichr(int(text[3:-1], 16))
                else:
                    return unichr(int(text[2:-1]))
            except ValueError:
                pass
        else:
            # named entity
            try:
                text = unichr(htmlentitydefs.name2codepoint[text[1:-1]])
            except KeyError:
                pass
        return text # leave as is
    return re.sub("&#?\w+;", fixup, text)



2> Vladislav..:

标准的lib自己的HTMLParser有一个未记录的函数unescape(),它完全符合你的想法:

import HTMLParser
h = HTMLParser.HTMLParser()
h.unescape('© 2010') # u'\xa9 2010'
h.unescape('© 2010') # u'\xa9 2010'


Python的HTMLParser文档中没有记录此方法,并且源中有一条注释说明它是供内部使用的.但是,它的工作方式与Python 2.6到2.7相同,可能是最好的解决方案.在2.6版之前,它只会解码命名实体,如`&`或`>`.
它在Python 3.4+中作为`html.unescape()`函数公开

3> chryss..:

使用内置unichr- BeautifulSoup是没有必要的:

>>> entity = 'ǎ'
>>> unichr(int(entity[3:],16))
u'\u01ce'


但这需要您自动且明确地知道字符串中编码的Unicode字符在哪里 - 您无法知道.当你弄错了,你需要'尝试...捕捉'结果异常.

4> pragmar..:

另一种方法,如果你有lxml:

>>> import lxml.html
>>> lxml.html.fromstring('ǎ').text
u'\u01ce'



5> Markus Amalt..:

如果您使用的是Python 3.4或更高版本,则只需使用html.unescape:

import html

s = html.unescape(s)



6> jfs..:

你可以在这里找到答案 - 从网页上获取国际字符?

编辑:似乎BeautifulSoup不转换以十六进制形式编写的实体.它可以修复:

import copy, re
from BeautifulSoup import BeautifulSoup

hexentityMassage = copy.copy(BeautifulSoup.MARKUP_MASSAGE)
# replace hexadecimal character reference by decimal one
hexentityMassage += [(re.compile('&#x([^;]+);'), 
                     lambda m: '&#%d;' % int(m.group(1), 16))]

def convert(html):
    return BeautifulSoup(html,
        convertEntities=BeautifulSoup.HTML_ENTITIES,
        markupMassage=hexentityMassage).contents[0].string

html = 'ǎǎ'
print repr(convert(html))
# u'\u01ce\u01ce'

编辑:

unescape()@dF提到的函数使用 htmlentitydefs标准模块,unichr()在这种情况下可能更合适.



7> karlcow..:

这个函数可以帮助您正确地将实体转换回utf-8字符.

def unescape(text):
   """Removes HTML or XML character references 
      and entities from a text string.
   @param text The HTML (or XML) source text.
   @return The plain text, as a Unicode string, if necessary.
   from Fredrik Lundh
   2008-01-03: input only unicode characters string.
   http://effbot.org/zone/re-sub.htm#unescape-html
   """
   def fixup(m):
      text = m.group(0)
      if text[:2] == "&#":
         # character reference
         try:
            if text[:3] == "&#x":
               return unichr(int(text[3:-1], 16))
            else:
               return unichr(int(text[2:-1]))
         except ValueError:
            print "Value Error"
            pass
      else:
         # named entity
         # reescape the reserved characters.
         try:
            if text[1:-1] == "amp":
               text = "&"
            elif text[1:-1] == "gt":
               text = ">"
            elif text[1:-1] == "lt":
               text = "<"
            else:
               print text[1:-1]
               text = unichr(htmlentitydefs.name2codepoint[text[1:-1]])
         except KeyError:
            print "keyerror"
            pass
      return text # leave as is
   return re.sub("&#?\w+;", fixup, text)


为什么这个答案被修改了?这对我来说似乎很有用.
推荐阅读
echo7111436
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有