xsl-list
[Top] [All Lists]

RE: XSLT 2.0 - No separator choice available for AVT

2005-04-06 07:30:23

use 

  <div a="{string-join($test, '')}">

Michael Kay
http://www.saxonica.com/

-----Original Message-----
From: Andrew Welch [mailto:ajwelch(_at_)piper-group(_dot_)com] 
Sent: 06 April 2005 15:13
To: xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
Subject: [xsl] XSLT 2.0 - No separator choice available for AVT


Consider the following XSLT:

<xsl:variable name="test" as="xs:string*">
      <xsl:value-of select="'Foo'"/>
      <xsl:value-of select="'Bar'"/>
      <xsl:value-of select="'Baz'"/>
</xsl:variable>

<xsl:template match="/">
      <div a="{$test}">
              <xsl:value-of select="$test" separator=""/>
      </div>
</xsl:template>

Produces:

<div a="Foo Bar Baz">FooBarBaz</div>

Is there any where to 'turn off' the whitespace separation of the text
nodes in $test, or some technique to use within the AVT to mimic
separator="" - I really don't want to use xsl:attribute :)

cheers
andrew

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: 
<mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--





--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--



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