This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: Calculating


I'm sure there are more elegant solutions but try this:

Given XML
---------------
<?xml version="1.0"?>
<thing>
	<amount>7</amount>
	<price>2.50</price>
</thing>

stylesheet
---------------
<?xml version="1.0"?>
<xsl:transform xmlns:xsl="http://www.w3.org/1999/XSL/Transform"; version="1.0">
<xsl:output method="text"/>

<xsl:template match="thing">
	<xsl:value-of select="./amount * ./price"/>
</xsl:template>

</xsl:transform>

bash$ saxon thing.xml thing.xsl
17.5
$bash
> Hello,
> 
> in my XML file I got two elements named price and amount. Is it
> possible to multiplicate the value of these elements in a xsl
> stylesheet and display it as total amount.
> In a book I found an example, that in XSL files you can work with
> arithmetical terms, but every syntax I tried, did not work. I always
> got the error "Expected token 'eof' found '*'".
> 
> Thanks in advance
> 
> Günter Hofmann
> Systemadministration
> 
> Atson Consulting AG
> Hagäckerstrasse 4
> 73760 Ostfildern
> 
> Tel.: 0711 / 167 100
> Fax: 0711 / 167 109 9
> 
> Email: gh@atson-ag.de
> www.atson-ag.de
> 
> 
> 
> 
> 
> 
> 
> 
>  XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
> 

-------------------------------------
Lawrence Mielniczuk
Room 314
Bodleian Library
Oxford OX1 3BG
Tel: (01865) 277 114
Mobile: 0794 101 5689
-------------------------------------


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]