Re: [xsl] How to set an element as the context without using a for-each loop?

Subject: Re: [xsl] How to set an element as the context without using a for-each loop?
From: "Leo Studer leo.studer@xxxxxxxxxxx" <xsl-list-service@xxxxxxxxxxxxxxxxxxxxxx>
Date: Wed, 1 May 2024 18:35:50 -0000
Then I am curious
> my suggestion with
>
> <xsl:sequence select="$record ! (Customer_or_Area_Code, Cycle_Date,
Sequence_Number) ! f:convert(.)b/>
>
> will produce the same result (order) while any use of / will sort the
elements in document order.
do the following expressions with / produce the same results? (notice I
changed the order in the ()
	 <xsl:sequence select="$record / (Customer_or_Area_Code, Cycle_Date,
Sequence_Number) / f:convert(.)b/>

 	<xsl:sequence select="$record / (Cycle_Date, Customer_or_Area_Code,
Sequence_Number) / f:convert(.)"/>

Current Thread