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.

link|improve this question

Exact duplicate Formatting scientific number representation in xsl – user357812 Mar 11 '11 at 18:08
Check my succinct implementation. – user357812 Mar 11 '11 at 18:09
feedback

2 Answers

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

link|improve this answer
feedback

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.

link|improve this answer
I am using XSLT 1.0 and need to convert from exponential to numeric since the program that uses thoe XMLs does not support exponential format – Daniel Mar 11 '11 at 0:01
+1 Good answer. @Daniel: question is unclear about whether you have such notation in input source or you want this for your output. – user357812 Apr 5 '11 at 0:10
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.