gpt4 book ai didi

xml - 如何使用Xpath提取RSS URL

转载 作者:行者123 更新时间:2023-12-03 17:32:03 25 4
gpt4 key购买 nike

示例代码:

<link rel="alternate" type="application/rss+xml" title="Fit Living Lifestyle &raquo; Feed" href="http://www.fitlivinglifestyle.com/feed/" />





如何让XPATH检查 type="application/rss+xml",如果存在,则返回URL: http://www.fitlivinglifestyle.com/comments/feed/(甚至还有title属性)

我已经尝试了一些变化:

//@href[parent::link[contains(@type='application/rss+xml',//@href)]]


但是似乎还不在那里。

最佳答案

您正在寻找的XPath是:

link[@type="application/rss+xml"]/@href


这将选择所有带有 linktype="application/rss+xml"元素,并返回 href属性。要返回 title属性,请使用:

link[@type="application/rss+xml"]/@title

关于xml - 如何使用Xpath提取RSS URL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33083686/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com