我正在尝试使用在多个帖子中推荐的 MLStripper 类从电子邮件中删除 html 以获得纯文本。由于“@”符号,strip_tags 函数在尝试解析时遇到问题。我猜这个类不够强大,只能解析有效的 html 标签,关于如何修复以下内容以处理“@”或其他库以从文本中删除 html 的任何建议?我还需要删除 & 之类的东西。
Python:
from HTMLParser import HTMLParser
class MLStripper(HTMLParser):
def __init__(self):
self.reset()
self.fed = []
def handle_data(self, d):
self.fed.append(d)
def get_data(self):
return ''.join(self.fed)
def strip_tags(self, html):
s = MLStripper()
s.feed(html)
return s.get_data()
ML = MLStripper()
test = ML.strip_tags("<div><br>On Sep 27, 2012, at 4:11 PM, Mark Smith <marksmith@gmail.com> wrote</br></div>")
print test
错误:
Traceback (most recent call last):
File "IMAPReader.py", line 49, in <module>
strippedText = ML.strip_tags("<marksmith@gmail.com>")
File "IMAPReader.py", line 22, in strip_tags
s.feed(html)
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/HTMLParser.py", line 108, in feed
self.goahead(0)
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/HTMLParser.py", line 148, in goahead
k = self.parse_starttag(i)
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/HTMLParser.py", line 229, in parse_starttag
endpos = self.check_for_whole_start_tag(i)
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/HTMLParser.py", line 304, in check_for_whole_start_tag
self.error("malformed start tag")
File "/System/Library/Frameworks/Python.framework/Versions/2.7/lib/python2.7/HTMLParser.py", line 115, in error
raise HTMLParseError(message, self.getpos())
HTMLParser.HTMLParseError: malformed start tag, at line 1, column 9