0

我有这样的 XML:

<game id="1" result="W" />
<game id="2" result="T" />
<game id="3" result="L" />
<game id="4" result="W" />
<game id="5" result="W" />

我正在尝试从末端计算与最后一个节点具有相同结果的节点数。在这种情况下,它将是 2。我尝试过 for-each,但在结果更改后无法退出循环。

4

1 回答 1

0

像这样的东西应该工作:

<xsl:variable name="lastValue" select="game[last()]/@result"/> 
<xsl:variable name="streak" 
              select="count(game[@result = $lastValue and 
                          not(following-sibling::game/@result != $lastValue)])" /> 
于 2013-03-06T05:18:11.423 回答