将 XSLT 中的指数格式转换为数字格式
我必须将指数格式的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我还没有尝试过,但这个实现声称可以满足您的要求: 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
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.