如果我有这样的 XML:(只是举个例子)
<restaurant>
<tables>
<table id=1 />
<table id=2 />
<table id=3 />
</tables>
而且我必须计算表的数量,正确的 Xpath 表达式是:
restaurant/tables/count(table)
或者
count(restaurant/tables/table)
?
谢谢