[xsl] A beautiful way to say: "give me the sequence after the first item"?

Subject: [xsl] A beautiful way to say: "give me the sequence after the first item"?
From: "Roger L Costello costello@xxxxxxxxx" <xsl-list-service@xxxxxxxxxxxxxxxxxxxxxx>
Date: Fri, 2 Dec 2022 13:08:59 -0000
Hi Folks,

I have a variable, $tokens, whose value is a sequence of items.

I want to select all items after the first item. Here is one way to do it:

	$tokens[position() gt 1]

To my eyes, that is not beautiful code.

Is there a beautiful (i.e., succinct) way to select all items after the first
item?

/Roger

Current Thread