[XSL-LIST Mailing List Archive Home] [By Thread] [By Date]

Re: [xsl] Problem using xsl:if to skip a node in a repeating area


Subject: Re: [xsl] Problem using xsl:if to skip a node in a repeating area
From: David Carlisle <davidc@xxxxxxxxx>
Date: Thu, 15 Dec 2005 14:07:21 GMT

<xsl:variable name='adstring' select='ADV' />
Did you mean that to be "'ADV'" ie the string ADV (rather than the
contents of an ADV element?)
You don't really need either variable of course, your current code is
equivalent to
<xsl:for-each select="rss/channel/item[position() &lt;= $ItemsPerPage]">
<xsl:if test="not(starts-with(title,ADV))">

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
________________________________________________________________________


Current Thread