Modifying values with XSLT - Stack Overflow most recent 30 from stackoverflow.com 2009-12-04T19:29:16Z http://stackoverflow.com/feeds/question/712853 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/712853/modifying-values-with-xslt 0 Modifying values with XSLT Bertrand 2009-04-03T07:21:47Z 2009-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#712866 4 Answer by Tomalak for Modifying values with XSLT Tomalak 2009-04-03T07:26:01Z 2009-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>&lt;!-- divide somevalue by 1000 --&gt; &lt;xsl:value-of select="somevalue div 1000.0" /&gt; </code></pre> http://stackoverflow.com/questions/712853/modifying-values-with-xslt/712877#712877 -1 Answer by Si Keep for Modifying values with XSLT Si Keep 2009-04-03T07:31:33Z 2009-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 -2 Answer by Bertrand for Modifying values with XSLT Bertrand 2009-04-03T08:26:56Z 2009-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>