Xpath反向搜索
当使用 DOM_Document Xpath 反向搜索时,有没有办法(从页面末尾向上移动而不是从上向下搜索?) 如果是这样,我该怎么做?
我正在做一个网站的一些工作。 (链接如下)。 http://www.sturmfh.com/obit-display.jhtml?DB=update/obits/dbase&DO=display&ID=1189477693_24578
我只想抓取3个讣告段落。所以我认为从最后开始并向上移动是最容易的。
Is there a way, when using DOM_Document Xpath to search in reverse (from the end of the page moving up instead of from the top down?)
If so, how would I do this?
I am doind a scrape of a web site. (linked below).
http://www.sturmfh.com/obit-display.jhtml?DB=update/obits/dbase&DO=display&ID=1189477693_24578
I only want to scrape the 3 obituary paragraphs. So i figured it'd be easiest to start at the end and move up.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用:
选择 XML 文档中的最后一个(最多三个)
p
元素。基于 XSLT 的验证:
当应用于问题中引用的文档时,此转换将计算 XPath 表达式并输出选定的
p
元素。结果是:
Use:
This selects the last (up to three)
p
elements in the XML document.XSLT - based verification:
When applied against the document, referenced in the question, this transformation evaluates the XPath expression and outputs the selected
p
elements.The result is: