在 XQuery/XSLT/XPath 中格式化 sum() 函数的输出
我有一个关于格式化 XQuery/XSLT/XPath 中 sum()
函数的输出的问题。我有一个 XSLT 样式表和一个 XQuery。我能够在 XSLT 中获得正确的格式,但不能在 XQuery 中获得正确的格式。
这是一个示例输入文件:
<userTotals>
<user cost="138764.63" hours="1506.51"/>
<user cost="329555.76" hours="3577.85"/>
<user cost="213909.81" hours="2322.33"/>
<user cost="22684.85" hours="246.28"/>
<user cost="6147.42" hours="66.74"/>
<user cost="1269.27" hours="13.78"/>
<user cost="181.45" hours="1.97"/>
<user cost="755.30" hours="8.2"/>
</userTotals>
这是一个示例样式表:
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output indent="yes"/>
<xsl:strip-space elements="*"/>
<xsl:template match="/userTotals">
<results>
<cost><xsl:value-of select="sum(user/@cost)"/></cost>
<hours><xsl:value-of select="sum(user/@hours)"/></hours>
<hours-formatted>
<xsl:value-of select="format-number(sum(user/@hours),'###.##')"/>
</hours-formatted>
</results>
</xsl:template>
</xsl:stylesheet>
这是输出:
<results>
<cost>713268.49</cost>
<hours>7743.659999999999</hours>
<hours-formatted>7743.66</hours-formatted>
</results>
注意
和
的输出。
的内容是 sum()
未修改/未格式化的输出。
的内容是我希望在 XSLT 和 XQuery 中格式化数字的方式。
问题是在 XQuery 中,format-number()
不可用。如何在 XSLT 和 XQuery 中以相同的方式格式化 sum()
的结果,以便结果显示为
?
我是否需要创建一个函数,将 sum()
的输出作为字符串并自己处理小数?在这种情况下,我需要将 .659
舍入为 .66
。我希望有更好的方法来做到这一点(也许将结果转换为不同的类型,然后??)。
感谢您提供的任何信息/指导。
I have a question about formatting the output of the sum()
function in XQuery/XSLT/XPath. I have both an XSLT stylesheet and also an XQuery. I'm able to get the correct formatting in the XSLT, but not in the XQuery.
Here is an example input file:
<userTotals>
<user cost="138764.63" hours="1506.51"/>
<user cost="329555.76" hours="3577.85"/>
<user cost="213909.81" hours="2322.33"/>
<user cost="22684.85" hours="246.28"/>
<user cost="6147.42" hours="66.74"/>
<user cost="1269.27" hours="13.78"/>
<user cost="181.45" hours="1.97"/>
<user cost="755.30" hours="8.2"/>
</userTotals>
Here is an example stylesheet:
<xsl:stylesheet version="2.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output indent="yes"/>
<xsl:strip-space elements="*"/>
<xsl:template match="/userTotals">
<results>
<cost><xsl:value-of select="sum(user/@cost)"/></cost>
<hours><xsl:value-of select="sum(user/@hours)"/></hours>
<hours-formatted>
<xsl:value-of select="format-number(sum(user/@hours),'###.##')"/>
</hours-formatted>
</results>
</xsl:template>
</xsl:stylesheet>
Here is the output:
<results>
<cost>713268.49</cost>
<hours>7743.659999999999</hours>
<hours-formatted>7743.66</hours-formatted>
</results>
Notice the output of <hours>
and <hours-formatted>
. The content of <hours>
is the unmodified/unformatted output of sum()
. The content of <hours-formatted>
is the way I want the number formatted in both the XSLT and the XQuery.
The problem is that in XQuery, format-number()
is not available. How can I format the results of sum()
the same way in both XSLT and XQuery so that the results will appear like <hours-formatted>
?
Will I need to create a function that takes the output of sum()
as a string and process the decimal myself? In this case I would need to round .659
to .66
. I'm hoping there is a better way to do this (maybe cast the results as a different type and then ??).
Thank you for any info/guidance you can provide.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Saxon-PE 及更高版本在 XQuery 中提供 format-number() 作为扩展函数(或通过启用 XQuery 3.0 支持)。
但是您可能可以使用 round-half-toeven() 函数来实现您想要的目的。
Saxon-PE and upwards offers format-number() in XQuery as an extension function (or by enabling XQuery 3.0 support).
But you can probably achieve what you want using the round-half-to-even() function.
此 XQuery 表达式:
输出:
This XQuery expression:
Output: