如何使用XPath表达式选择所有叶节点?
我相信这是可能的,但无法弄清楚语法。像这样:
xmlNode.SelectNodes("//*[count(child::*) <= 1]")
但这不正确。
I believe it's possible but couldn't figure out the syntax. Something like this:
xmlNode.SelectNodes("//*[count(child::*) <= 1]")
but this is not correct.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
使用:
如果只需要元素叶节点(这需要澄清——具有非元素子元素的元素是否被视为叶节点?),则使用以下 XPath 表达式选择它们:
上面的两个表达式可能是选择所需节点(任意节点或元素 - 叶节点)的最短。
Use:
In case only element leaf nodes are wanted (and this needs clarification -- are elements that have non-element children considered leaf nodes?), then the following XPath expression selects them:
Both expressions above are probably the shortest that select the desired nodes (either any-node or element -- leaf nodes).
任何没有子元素的元素
Any elements with no element child
为什么小于或等于 1 ?
xmlNode.SelectNodes("//*[count(child::*) = 0]")
在此站点进行测试等 http://www.whitebeam.org/library/guide/TechNotes/xpathtestbed.rhtm
非常有帮助..
Why less or equal to 1 ?
xmlNode.SelectNodes("//*[count(child::*) = 0]")
Make tests etc at this site http://www.whitebeam.org/library/guide/TechNotes/xpathtestbed.rhtm
Pretty helpful ..
我添加这个 XSLT 答案是因为谷歌的前端匹配似乎缺乏这样的解决方案:
经过长期努力将 CDATA 提取为 XML,最终,这个表达式最适合我:
I'm adding this XSLT answer since it seems google's front matches lack such a solution:
After a long struggle with extracting CDATA as XML, eventually, this expression worked best for me: