Re: [xsl] XSLT repetition constructs

Subject: Re: [xsl] XSLT repetition constructs
From: "Martin Honnen martin.honnen@xxxxxx" <xsl-list-service@xxxxxxxxxxxxxxxxxxxxxx>
Date: Thu, 7 Mar 2019 11:45:23 -0000
Am 07.03.2019 um 12:23 schrieb Mukul Gandhi gandhi.mukul@xxxxxxxxx:

B B I've updated the document I've prepared, at the same link (http://gandhimukul.tripod.com/xslt/xslt_repetition_constructs.pdf) discussing fold-left() and fold-right() functions as well.


The examples for those two functions seem a bit artificial as the problem they solve could be easily solved with

B B string-join($inpValues, '.')

respectively

B string-join(reverse($inpValues), '.')

in earlier XPath versions without any need for higher-order functions and recursion or just as well at the XSLT level with

B <xsl:value-of select="$inputValues" separator="."/>

respectively

B <xsl:value-of select="reverse($inputValues)" separator="."/>

Current Thread