htmlagilitypack 选择 ;具有指定内部文本的标签
我需要选择一个包含我指定的内部文本的标签。 任何人都可以帮我处理 xpath 查询,即 wake up
。因此,如果我将唤醒传递给 xpath,它应该选择此链接,
谢谢
i need to select a tag that contains an innertext i specify.
can anyone help me with the xpath query ie <a href="#">wake up</a>
. So if i pass wake to the xpath, it should select this a link
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
XPath 很简单:
//a[starts-with(., 'wake')]
。The XPath is simply
//a[starts-with(., 'wake')]
.一种方法(区分大小写):
One way (it matches case sensitive):
这应该可以做到:
This should do it: