如何在3个数字中找到最大的2个数字并对它们执行一些算术运算,如下例所示?
<root> <num>10</num> <num>12</num> <num>8</num> </root>
这个样式表:
原文链接:https://www.f2er.com/xml/292703.html<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> <xsl:output method="text"/> <xsl:template match="/root"> <xsl:variable name="max1" select="num[not(../num > .)]"/> <xsl:variable name="max2" select="num[not(../num[count(.|$max1)!=1] > .)]"/> <xsl:value-of select="concat($max1,' + ',$max2,' = ',$max1 + $max2,'
','average = ',($max1 + $max2) div 2,'
')"/> </xsl:template> </xsl:stylesheet>
输出:
12 + 10 = 22 average = 11