Modifying values with XSLT - Stack Overflow most recent 30 from stackoverflow.com2009-12-04T19:29:16Zhttp://stackoverflow.com/feeds/question/712853http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/712853/modifying-values-with-xslt0Modifying values with XSLTBertrand2009-04-03T07:21:47Z2009-04-20T15:32:30Z
<p>Hi,</p>
<p>I have XML file with values expressed in SI unit (m, N).
I use an XSLT document to transform it into HTML page where I would like to display values with other units (um, mN).</p>
<p>Is there a way to modify values I extract from my XML document using XSLT without modifying XML content before XSLT processing ?</p>
<p>Thanks in advance for your help</p>
<p>Bertrand</p>
http://stackoverflow.com/questions/712853/modifying-values-with-xslt/712866#7128664Answer by Tomalak for Modifying values with XSLTTomalak2009-04-03T07:26:01Z2009-04-03T07:26:01Z<p>You can do <a href="http://www.w3.org/TR/xquery/#id-arithmetic" rel="nofollow">math in XPath expressions</a>:</p>
<pre><code><!-- divide somevalue by 1000 -->
<xsl:value-of select="somevalue div 1000.0" />
</code></pre>
http://stackoverflow.com/questions/712853/modifying-values-with-xslt/712877#712877-1Answer by Si Keep for Modifying values with XSLTSi Keep2009-04-03T07:31:33Z2009-04-20T15:32:30Z<p>If you were using c# to run the xslt transform, and the maths capabilities of Xpath are not good enough for your requirements, you can make calls from the xslt to methods in your c# class which would allow you to call out to c# to do your maths and then return the value back into your xslt. Search for c# xslt extensions.</p>
http://stackoverflow.com/questions/712853/modifying-values-with-xslt/713029#713029-2Answer by Bertrand for Modifying values with XSLTBertrand2009-04-03T08:26:56Z2009-04-03T08:26:56Z<p>Just to notice to others interesting in.
I'm developing in Python, and lxml library allow you to call extensions in XSLT.</p>
<p><a href="http://codespeak.net/lxml/extensions.html" rel="nofollow">http://codespeak.net/lxml/extensions.html</a></p>