本文介绍了拼凑得到包括孩子在内的整个文本的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在抓取的文档中有一系列<p>
元素.
其中一些是:<p><span>bla bla bla</span></p>
或者<p><span><span>bla bla bla</span><span>second bla bla</span></span></p>
I have a series of <p>
elements inside a document I'm scraping with scrapy.
some of the are: <p><span>bla bla bla</span></p>
or<p><span><span>bla bla bla</span><span>second bla bla</span></span></p>
我想提取所有带有子项的文本(假设我已经具有<p
的选择器)
(第二个示例:具有字符串bla bla bla second bla bla
)
I want to extract all the text with the children (assume I already have the selector of the <p
)
(second example: to have a string bla bla bla second bla bla
)
推荐答案
您可以只使用//text()
从子节点中提取所有文本
you can just use //text()
to extract all text from children nodes
例如:
.//p//text()
这篇关于拼凑得到包括孩子在内的整个文本的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!