Re: [xsl] Convert a node-set to a string

Subject: Re: [xsl] Convert a node-set to a string
From: Wendell Piez <wapiez@xxxxxxxxxxxxxxxx>
Date: Fri, 25 Mar 2011 14:29:04 -0400
David,

Try this:

<xsl:template match="Item">
  <Length>
    <xsl:value-of select="ext:someExtensionFunction(string(.))"/>
  </Length>
</xsl:template>

Cheers,
Wendell

On 3/25/2011 2:00 PM, David Frey wrote:
<xsl:template match="Item"> <xsl:variable name="item" select="."/>
<xsl:variable name="len" select="ext:someExtensionFunction($item)"/>
<Length><xsl:value-of select="$len"/></Length> </xsl:template>

The problem I think I am having is that my extension function expects
a string, but I am passing it a node-set.  I want to convert the
node-set to a string rather than changing the extension function to
accept a node-set as a parameter.  Is this possible?


--
======================================================================
Wendell Piez                            mailto:wapiez@xxxxxxxxxxxxxxxx
Mulberry Technologies, Inc.                http://www.mulberrytech.com
17 West Jefferson Street                    Direct Phone: 301/315-9635
Suite 207                                          Phone: 301/315-9631
Rockville, MD  20850                                 Fax: 301/315-8285
----------------------------------------------------------------------
  Mulberry Technologies: A Consultancy Specializing in SGML and XML
======================================================================

Current Thread