Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 XmlSpy 分析 xml 文件,并且我想快速计算与给定 xpath 匹配的节点数。我知道如何输入 XPath 并获取节点列表,但我真的只是对计数感兴趣。有可能得到这个吗?
我正在使用 XmlSpy 专业版 2007 sp2,如果重要的话。
我刚刚想通了。我只需要将 count() 放在我的 xpath 周围,如下所示:
count(//my/node)