我想对一些-
名称中包含 a 的元素进行一些数学运算:
<containers>
<container>
<max-capacity>10</max-capacity>
<content>5</content>
</container>
<container>
<max-capacity>10</max-capacity>
<content>8</content>
</container>
</containers>
我想执行一个 xpath 查询,计算剩余容量大于 2 的容器数量
count(containers/container[max-capacity-content>2])
但由于-
节点名称中有 a ,max-capacity
这不起作用。
我该怎么做才能完成这项工作?
(我不想将 xml 转换为-
-free 文档。)