RE: [xsl] Subsets

Subject: RE: [xsl] Subsets
From: "Michael Kay" <mike@xxxxxxxxxxxx>
Date: Mon, 23 Apr 2007 19:15:54 +0100
> > I think I got it.  node[position() > 1] ... right?
> >
> 
> That will give you all nodes of type node in the current 
> context except the first, if that is what you needed, then: yes.

Alternative formulations in XSLT 2.0 are 

subsequence(nodes, 2)

remove(nodes, 1)

Michael Kay
http://www.saxonica.com/

Current Thread