xsl-list
[Top] [All Lists]

Re: [xsl] XSLT 2: Best Way to Synthesize Elements Given List of Tagnames

2016-11-05 13:21:31
In 3.0, apart from xsl:iterate as suggested by John Lumley, you could consider 
using a fold:

<xsl:function name="f:wrap" as="element(*)">
  <xsl:param name="e" as="element(*)"/>
  <xsl:param name="n" as="xs:string"/>
  <xsl:element name="{$n}"><xsl:copy-of select="$e"/></xsl:element>
</xsl:function>

then

fold-left(reverse(tokenize($path, '/')), $stuff-from-somewhere-else, f:wrap#2)

Michael Kay
Saxonica

On 5 Nov 2016, at 16:19, Eliot Kimber ekimber(_at_)contrext(_dot_)com 
<xsl-list-service(_at_)lists(_dot_)mulberrytech(_dot_)com> wrote:

Say I have this string: "foo/bar" (or any arbitrarily-long sequence of
/-delimited tag names) and want to construct from it:

<foo>
<bar>
  <!-- Stuff added here that I get from somewhere else -->
</bar>
</foo>

Is there an easier or more obvious way to generate this than an recursive
function?

With a recursive function I can easily create child elements until the
sequence is exhausted but it feels like there should be an easier way
using XSLT 2 but if there is I'm not thinking of it.

Cheers,

Eliot

--
Eliot Kimber
http://contrext.com





--~----------------------------------------------------------------
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>