我正在使用 HTMLParser 从简单的 html 文本中提取图像 url,如下所示:
html = <p><span style="font-size: 17px;"><span style="color: #993300;"><img style="margin-right: 15px; vertical-align: top;" src="images/announcements.png" alt="announcements" /><cite>some message I would like to preserve with its formatting</cite></span></span></p>
现在我还需要一个没有 img 标签的上述 html 版本,但是在正确的位置关闭标签有困难。这是我尝试过的:
class MyHtmlParser(HTMLParser):
'''
Parse simple url to extract data and image url.
This is expecting a simple url containing only one data block and one iimage url.
'''
def __init__(self):
HTMLParser.__init__(self)
self.noImgHtml = ''
def handle_starttag(self, tag, attrs):
if tag == 'img':
for a in attrs:
if a[0] == 'src':
self.imageUrl = a[1]
else:
print '<%s>' % tag
self.noImgHtml += '<%s>' % tag
for a in attrs:
print '%s=%s' % a
self.noImgHtml += '%s=%s' % a
def handle_endtag(self, tag):
self.noImgHtml += '</%s>' % tag
def handle_data(self, data):
self.noImgHtml += data
MyHtmlParser().feed(html) 的输出是这样的:
<b>LATEST NEWS:</b><p><span>style=font-size: 17px;<span>style=color: #993300;</img><cite>The image uploader works again, so make sure to use some screenshots in your uploads/tutorials to make your submission look extra nice</cite></span></span></p>
正如您所看到的(正如我的代码流所预期的那样),标签并没有像在原始 html 中那样关闭(例如 span>)。
这可以用 HTMLParser 轻松完成,还是我应该求助于 RE 来提取图像标签(这看起来不太优雅)?
我不能使用外部模块来执行此操作,因此需要使用 HTMLParser 提供的功能。
提前谢谢,坦率