in XS" /> in XS" /> in XS"/>

xsltproc interprets XSL different

79 Views Asked by At

I have

<price>59,00</price>

in XML and transform it with

<xsl:value-of select="(ceiling(((number(translate(text(), ',', '.'))*26))div 10)*10)"/>

in XSL, but I get different result in different processors.
In Liquid and msxsl, I get the correct result '1540', but in xsltproc, I got '40040'.
Are there some different interpretations of XSLT?

0

There are 0 best solutions below