【发布时间】:2020-03-13 04:47:54
【问题描述】:
我正在尝试从具有嵌套内容的 HTML 标记中提取文本内容。我从另一个相关问题中举了这个例子,可以看到here。
>>> from parsel import Selector
>>> sel = Selector(text='''
<p>
Senator <a href="/people/senator_whats_their_name">What's-their-name</a> is <em>furious</em> about politics!
</p>''')
>>>
>>> # Using XPath
... sel.xpath('normalize-space(//p)').extract_first()
"Senator What's-their-name is furious about politics!"
>>>
>>> # Using CSS
... "".join(sel.css("p *::text").extract())
"Senator What's-their-name is furious about politics!"
这非常接近我想要的。但是,我想排除一些特定的标签。例如。我想从结果字符串中排除 a 标签的内容。 IE。我想得到:
Senator is furious about politics!
我怎样才能达到预期的效果?我的偏好是继续使用 Scrapy / Parsel 来获得结果,但如果不存在解决方案,我可以考虑使用任何其他第三方库。任何帮助将不胜感激。谢谢!
【问题讨论】:
-
您可以使用正则表达式先从文本中删除
<a>标签,然后再进行处理。这不是最好的方法,但它会起作用。re.sub('<a(.*?)</a>','',your_text) -
是的。这可以工作,但我有一个动态用例,我想根据复杂的选择器排除多个元素。
标签: python css xpath beautifulsoup scrapy