Re: [xsl] Multi -step processing in a function using XSLT 2.0

Subject: Re: [xsl] Multi -step processing in a function using XSLT 2.0
From: David Carlisle <davidc@xxxxxxxxx>
Date: Tue, 13 Dec 2005 15:34:43 GMT
> How should I go about doing this?

It's not clear where you found difficulty.

<xsl:function name="f">
 <xsl:param name="x"/>
 <xsl:variable name="y1">
  .....
 </xsl:variable>
 <xsl:variable name="y2">
  <xsl:apply-templates select="$y1"/>
 </xsl:variable>
 <xsl:sequence select="some-function-returning-a-list-of-strings($y2)"/>
</xsl:function>


David

________________________________________________________________________
This e-mail has been scanned for all viruses by Star. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________

Current Thread