我假设你的意思是金额的总和。您可以使用 xpath 如下所示
<xsl:template match="/xml">
<xsl:value-of select="sum(test[normalize-space(BookID)='0061AB']/amount)"/>
</xsl:template>
编辑
您可以根据我对上一个问题的回答,使用变量或使用调用模板来参数化 BookID
以下样式表
<xsl:template match="/xml">
<xsl:variable name="bookID" select="'0061AB'"/>
<xsl:value-of select="sum(test[normalize-space(BookID)=$bookID]/amount)"/>
</xsl:template>
编辑#2
您现在似乎正在对不同的元素进行分组并汇总总数。
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" indent="yes"/>
<!-- the identity template -->
<xsl:template match="@* | node()">
<xsl:copy>
<xsl:apply-templates select="@* | node()" />
</xsl:copy>
</xsl:template>
<xsl:template match="test">
<xsl:variable name="bookID" select="normalize-space(BookID/text())" />
<xsl:if test="not(preceding-sibling::test[normalize-space(BookID/text())=$bookID])">
<test>
<xsl:apply-templates />
</test>
</xsl:if>
<!--Else `eat` the duplicate test node-->
</xsl:template>
<xsl:template match="amount">
<amount>
<xsl:variable name="bookID" select="normalize-space(../BookID/text())" />
<xsl:value-of select="sum(//test[normalize-space(BookID/text())=$bookID]/amount)"/>
</amount>
</xsl:template>
</xsl:stylesheet>
产生输出
<xml>
<test>
<BookID>
0061AB
</BookID>
<amount>18</amount>
</test>
<test>
<BookID>
0062CD
</BookID>
<amount>2</amount>
</test>
</xml>
请您花时间阅读常见问题解答
编辑 3
此样式表将满足您的最新要求。
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" indent="yes" omit-xml-declaration="yes"/>
<!-- the identity template -->
<xsl:template match="@* | node()">
<xsl:copy>
<xsl:apply-templates select="@* | node()" />
</xsl:copy>
</xsl:template>
<xsl:template match="test">
<xsl:variable name="bookID" select="normalize-space(BookID/BookID1/BookID2/text())" />
<xsl:if test="not(preceding-sibling::test[normalize-space(BookID/BookID1/BookID2/text())=$bookID])">
<test>
<xsl:apply-templates />
</test>
</xsl:if>
<!--Else `eat` the duplicate test node-->
</xsl:template>
<xsl:template match="amount">
<amount>
<xsl:variable name="bookID" select="normalize-space(../BookID/BookID1/BookID2/text())" />
<xsl:value-of select="sum(//test[normalize-space(BookID/BookID1/BookID2/text())=$bookID]/amount)"/>
</amount>
</xsl:template>
</xsl:stylesheet>