xsl-list
[Top] [All Lists]

RE: Comparing element values

2004-10-04 07:46:54
Hi David

Thanks for the quick response.

I now want to use variables instead of explicit values in the match pattern,
but according to the manual this is not allowed.

How do I adapt the code below to accept variables?


Kind regards.

--
Kevin


-----Original Message-----
From: David Carlisle [mailto:davidc(_at_)nag(_dot_)co(_dot_)uk] 
Sent: 04 October 2004 14:25
To: xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
Subject: Re: [xsl] Comparing element values


<xsl:template match="price">
  <xsl:copy-of select="."/>
</xsl:template>

<xsl:template match="price[position()=4]">
  <xsl:copy-of select="self::*[. &gt;= preceding-sibling::price[1]]"/>
</xsl:template>

<xsl:template match="price[position()=3]">
  <xsl:copy-of select="self::*[. &gt; following-sibling::price[1]]"/>
</xsl:template>

David

________________________________________________________________________
This e-mail has been scanned for all viruses by Star. The service is powered
by MessageLabs. For more information on a proactive anti-virus service
working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________

--+------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--+--





<Prev in Thread] Current Thread [Next in Thread>