条件付きでカウンターを作るのに苦労しています。私のXMLは次のとおりです。
<comments>
<comment>
<name>Jonh</name>
<num>4/7</num>
</comment>
<comment>
<name>Mary</name>
<num>2/9</num>
</comment>
<comment>
<name>Catie</name>
<num>12/2</num>
</comment>
<comment>
<name>Stefen</name>
<num>127/300</num>
</comment>
</comments>
タグの構造は次のとおりです。
number1/number2
そして、すべてのタグで number1 が number2 より大きい頻度を知りたい
私はカウントで試しました:
count(tokenize(//comment/num, '/')[1] > tokenize(//comment/num, '/')[2])
しかし、結果はありません。変数をカウンターとして使用することを考えましたが、それらは不変です。どうすればこれを解決できますか?