1

如何在 XSLT 1 的 CSV 中添加数字?

我要拿:

<num>1,2,3</num>

并得到元素中数字的总和,所以我们会从上面得到 6。

4

1 回答 1

0

使用 FXSL 和str-split-to-words模板(我懒得编写耗时且容易出错的递归模板:)

<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
 xmlns:ext="http://exslt.org/common">
 <xsl:import href="strSplit-to-Words.xsl"/>

  <xsl:output indent="yes" omit-xml-declaration="yes"/>

    <xsl:template match="/">
        <xsl:variable name="vwordNodes">
          <xsl:call-template name="str-split-to-words">
            <xsl:with-param name="pStr" select="."/>
            <xsl:with-param name="pDelimiters" select="','"/>
          </xsl:call-template>
        </xsl:variable>

       <xsl:variable name="vNums" select="ext:node-set($vwordNodes)/*"/>

       <xsl:value-of select="sum($vNums)"/>
    </xsl:template>
</xsl:stylesheet>

当此转换应用于提供的 XML 文档时:

<num>1,2,3</num>

产生了想要的正确结果

6
于 2013-03-23T16:00:13.423 回答