从网页中抓到的字符串
s
=
'<abc>'
用Python可以这样处理:
import
HTMLParser
html_parser
HTMLParser.HTMLParser()
html_parser.unescape(s)
#这样就得到了s = '<abc>'