up vote 1 down vote favorite
share [g+] share [fb]

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).

Is there a way to modify values I extract from my XML document using XSLT without modifying XML content before XSLT processing ?

Thanks in advance for your help

Bertrand


Just to notice to others interesting in. I'm developing in Python, and lxml library allow you to call extensions in XSLT.

http://codespeak.net/lxml/extensions.html

link|improve this question

50% accept rate
feedback

2 Answers

up vote 5 down vote accepted

You can do math in XPath expressions:

<!-- divide somevalue by 1000 --> 
<xsl:value-of select="somevalue div 1000.0" />
link|improve this answer
Looks perfect. Do exactly what I want. Thanks – Bertrand Apr 3 '09 at 7:33
feedback

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.

link|improve this answer
Will have a look to XSLT extensions. – Bertrand Apr 3 '09 at 7:33
And while you're at it, bind the C# to an external web service that calls google's calculator api through an enterprise service bus... – Pete Kirkham Apr 3 '09 at 8:23
Thanks for that Pete, I was merely pointing out an option, not suggesting it was the 'right' answer in this case. – Simon Keep Apr 3 '09 at 8:59
Extensions can be helpful for date parsing and reformatting - there are XSLT stylesheets out there for date processing, but what can be done in 5 lines of C# is humongous in XSLT. – ijw Jul 8 '09 at 0:22
feedback

Your Answer

 
or
required, but never shown

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