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: Subtracting in XSL?


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

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