将 XSLT 中的指数格式转换为数字格式

发布于 2024-10-21 02:19:01 字数 75 浏览 2 评论 0原文

我必须将指数格式的 XSLT 数字(即: 1,2345E7 )转换为数字(即: 12340000 )。 XSLT 函数可以实现什么目的?

I have to convert within my XSLT number in exponential format ( i.e: 1,2345E7 ) into numeric ( i.e: 12340000 ).
What would the a XSLT function to achieve this.

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

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

发布评论

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

评论(2

绿萝 2024-10-28 02:19:01

我还没有尝试过,但这个实现声称可以满足您的要求: http://www.orm-designer.com/article/xslt-convert-scientific-notation-to-decimal-number

I haven't tried it, but this implementation claims to do what you ask: http://www.orm-designer.com/article/xslt-convert-scientific-notation-to-decimal-number

離殇 2024-10-28 02:19:01

XSLT 2.0 接受输入数字的指数表示法,而 XSLT 1.0 则不接受。所以答案取决于您使用的版本(我怀疑您使用的是 1.0,因为否则您不需要寻求帮助)。在输出方面,您可以使用任一版本的 format-number() 来控制格式。

XSLT 2.0 accepts exponential notation for numbers on input, XSLT 1.0 does not. So the answer rather depends which version you are using (I suspect you are using 1.0, because otherwise you wouldn't need to ask for help). On the output side, you can control the format using format-number() with either version.

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