Re: Subtracting in XSL?

Subject: Re: Subtracting in XSL?
From: Gary L Peskin <garyp@xxxxxxxxxxxx>
Date: Wed, 16 Aug 2000 20:53:15 -0700
Try:

<xsl:template match="/DOCUMENT">
  <xsl:value-of select="number(Image_A/IMG/@HEIGHT) -
number(Image_B/IMG/@HEIGHT)"/>
</xsl:template>

Gary

Ramon Mariano wrote:
> 
> I have an XML document that contains the following:
> <DOCUMENT>
>         <Image_A><IMG SRC="image_a.jpg" WIDTH="200" HEIGHT="400"/></Image_A>
>         <Image_B><IMG SRC="image_b.jpg" WIDTH="100" HEIGHT="200"/></Image_B>
> </DOCUMENT>
> 
> Is there a way for me to subtract the height of the "Image_B" element from
> the "Image_A" element?


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


Current Thread