Re: [xsl] selecting all but first node

Subject: Re: [xsl] selecting all but first node
From: David Carlisle <davidc@xxxxxxxxx>
Date: Sat, 27 May 2006 00:12:58 +0100
>    <xsl:template match="persoonsgegevens[1]">
> ...
> </xsl:template>
> 
> I would like to treat all other nodes differently...
>    <xsl:template match="persoonsgegevens[?]">
> ...
> </xsl:template>
> 
> What should i use instead of ?
> 

Just delete the [?] the template matching match="persoonsgegevens[1]"
has a higher default priority than one matching match="persoonsgegevens"
so you don't need to explicitly exclude position 1 in the second
template. See, despite the subject line, you are looking at XSLT match
patterns, not XPath expressions (which are used in select attrbutes).
to select all but the first of something go
select="something[position()!=1]" but you don't need that here.

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