获取节点总数和计数节点
是否可以获得 XML 节点的总数?
另外,如何使用 XSLT 执行 for 语句?
Is it possible to get the total number of XML nodes?
Also, how does one do a for-statement with XSLT?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果你想计算 XML 的节点数,你可以使用 count(object/node) ,它会是这样的:
上面的指令将让你知道你的根节点有多少个子节点
希望这对你有帮助。
If you want to count the node of you XML you could use count(object/node) and it will be something like this:
The instruction above will let you know how many child nodes does your root node has
Hope this helps you.