XPath 选择节点
我有:
<div id="foo">
<a href="/xxx.php"> xx </a>
<a href="/xy.php"> xy </a>
<a href="/uid.php?id=123"> 123 </a>
<a href="/uid.php?id=344"> 344 </a>
</div>
我如何使用 HtmlAgilityPack 仅选择 href 中包含“id”的项目?
输出:
<a href="/uid.php?id=123"> 123 </a>
<a href="/uid.php?id=344"> 344 </a>
谢谢,高级。
I have:
<div id="foo">
<a href="/xxx.php"> xx </a>
<a href="/xy.php"> xy </a>
<a href="/uid.php?id=123"> 123 </a>
<a href="/uid.php?id=344"> 344 </a>
</div>
I how select only items containing 'id' in href using HtmlAgilityPack?
with Output:
<a href="/uid.php?id=123"> 123 </a>
<a href="/uid.php?id=344"> 344 </a>
Thanks,Advanced.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
以下 xpath 表达式应选择具有包含文本“id”的
href
标记的所有a
元素。我可以使用以下代码在 href 属性中选择带有 id 的 a 标签:
The following xpath expression should select all
a
elements that have anhref
tag that contains the text "id".I was able to select the a tags with id in the href attribute using the following code: