xsl-list
[Top] [All Lists]

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

2005-12-15 07:07:21

<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
________________________________________________________________________

--~------------------------------------------------------------------
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>
--~--