如果我们使用子串函数如何求和

发布于 2024-11-09 08:38:56 字数 470 浏览 0 评论 0原文

我想问如果我们使用 substring 函数如何获得总金额, 例如我有这个xml,

<document>

    <line id="0">
        <field id="0"><![CDATA[AAAddd17aaass]]></field>
    </line>
    <line id="1">
        <field id="0"><![CDATA[DDDaaa33sssaa]]></field>
    </line>
</document>

我应该 sum(substring(field[@id='0'], 7,2))。然后我尝试这样做,收到此错误消息:当前项目是“xs:string 类型的 NaN”。 (我尝试使用数字函数,但没有帮助)

请告诉我如何解决它。

I want to ask how to get total amount if we use substring function,
for example I have this xml,

<document>

    <line id="0">
        <field id="0"><![CDATA[AAAddd17aaass]]></field>
    </line>
    <line id="1">
        <field id="0"><![CDATA[DDDaaa33sssaa]]></field>
    </line>
</document>

I should sum(substring(field[@id='0'], 7,2)). Then I try to do that, I get this error message: Current Item is 'NaN of type xs:string. (I try to use number function but it doesn't help)

Please advice me how to solve it.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

水波映月 2024-11-16 08:38:56

XSLT 2.0 中很容易:

sum(field[@id='0']/number(substring(., 7,2)))

XSLT 1.0 中更困难:参见示例 http://www.velocityreviews.com/forums/t170401-sum-over-compulated-value.html

Easy in XSLT 2.0:

sum(field[@id='0']/number(substring(., 7,2)))

Rather more difficult in XSLT 1.0: see for example http://www.velocityreviews.com/forums/t170401-sum-over-computed-value.html

仙气飘飘 2024-11-16 08:38:56

在 XSLT 1.0 中,如果您不想自己编写递归模板,可以使用 transform-and-sum 模板,来自 FXSL

了解如何使用它此处


以下是完整的转换

<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:f="http://fxsl.sf.net/"
xmlns:func-transform="f:func-transform"
exclude-result-prefixes="xsl f func-transform"
>
   <xsl:import href="transform-and-sum.xsl"/>

   <!-- to be applied on testTransform-and-sum.xml -->

   <xsl:output method="text"/>

   <func-transform:func-transform/>

    <xsl:template match="/">
      <xsl:call-template name="transform-and-sum">
        <xsl:with-param name="pFuncTransform"
                        select="document('')/*/func-transform:*[1]"/>
        <xsl:with-param name="pList" select="/*/*/*"/>
      </xsl:call-template>
    </xsl:template>

    <xsl:template match="func-transform:*" mode="f:FXSL">
      <xsl:param name="arg1" select="0"/>
      <xsl:value-of select="number(substring($arg1, 7,2))"/>
    </xsl:template>

</xsl:stylesheet>

应用于提供的 XML 文档时

<document>
    <line id="0">
        <field id="0"><![CDATA[AAAddd17aaass]]></field>
    </line>
    <line id="1">
        <field id="0"><![CDATA[DDDaaa33sssaa]]></field>
    </line>
</document>

生成所需的正确结果

50

In XSLT 1.0 if you don't want to write recursive templates yourself, you can use the transform-and-sum template from FXSL.

See how to use it here.


Here is the full transformation:

<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:f="http://fxsl.sf.net/"
xmlns:func-transform="f:func-transform"
exclude-result-prefixes="xsl f func-transform"
>
   <xsl:import href="transform-and-sum.xsl"/>

   <!-- to be applied on testTransform-and-sum.xml -->

   <xsl:output method="text"/>

   <func-transform:func-transform/>

    <xsl:template match="/">
      <xsl:call-template name="transform-and-sum">
        <xsl:with-param name="pFuncTransform"
                        select="document('')/*/func-transform:*[1]"/>
        <xsl:with-param name="pList" select="/*/*/*"/>
      </xsl:call-template>
    </xsl:template>

    <xsl:template match="func-transform:*" mode="f:FXSL">
      <xsl:param name="arg1" select="0"/>
      <xsl:value-of select="number(substring($arg1, 7,2))"/>
    </xsl:template>

</xsl:stylesheet>

when applied on the provided XML document:

<document>
    <line id="0">
        <field id="0"><![CDATA[AAAddd17aaass]]></field>
    </line>
    <line id="1">
        <field id="0"><![CDATA[DDDaaa33sssaa]]></field>
    </line>
</document>

the wanted, correct result is produced:

50
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文