xsl-list
[Top] [All Lists]

Re: [xsl] XSLT repetition constructs

2019-03-07 05:45:27
Am 07.03.2019 um 12:23 schrieb Mukul Gandhi 
gandhi(_dot_)mukul(_at_)gmail(_dot_)com:

    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

   string-join($inpValues, '.')

respectively

  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

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

respectively

  <xsl:value-of select="reverse($inputValues)" separator="."/>
--~----------------------------------------------------------------
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
EasyUnsubscribe: http://lists.mulberrytech.com/unsub/xsl-list/1167547
or by email: xsl-list-unsub(_at_)lists(_dot_)mulberrytech(_dot_)com
--~--

<Prev in Thread] Current Thread [Next in Thread>