这个 xpath 是什么意思“//Form/*[. =“在”]”
我是 xml 相关事物的新手
我无法理解:
SelectNodes(@"//Form/*[. = 'on']");
注意:SelectNodes< /a> 是 XmlNode。(与 XmlDocument)
请告诉我这段代码的含义是什么?
I am newbie in xml related things
I am not able to understand :
SelectNodes(@"//Form/*[. = 'on']");
Note : SelectNodes is a function of XmlNode.(related to XmlDocument)
Please tell me what this code snippet means ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
.
表示当前元素节点,无论它是什么。谓词正在检查元素的文本节点以查看它是否是字符串'on'
。因此,XPath 查询会选择
Form
节点的子节点且值为on
的任何节点。.
means the current element node, whatever it is. The predicate is checking the element's text node to see if it's the string'on'
.So that XPath query selects any nodes that are children of the
Form
node and have a value ofon
.