RE: [xsl] concat - node set or a string

Subject: RE: [xsl] concat - node set or a string
From: "M. David Peterson" <m.david@xxxxxxxxxx>
Date: Fri, 5 Mar 2004 02:20:41 -0700
concat() is a string related function.  If you are trying to join
together a combination of node-sets you need to look at the <xsl:copy>
and <xsl:copy-of> to copy either parts or all of multiple node-sets into
one node-set.

Good luck!

M:D

-----Original Message-----
From: owner-xsl-list@xxxxxxxxxxxxxxxxxxxxxx
[mailto:owner-xsl-list@xxxxxxxxxxxxxxxxxxxxxx] On Behalf Of Markus Hanel
Sent: Friday, March 05, 2004 12:21 AM
To: xsl mailinglist
Subject: [xsl] concat - node set or a string

I would like to write a node set that allows me to automatically show
the
elements of a pers data.
Therefore I defined 2 variables: self_quirxi and qadmin_table
<xsl:variable name="self_quirxi"
select="document('/qxml/quirxi.xml')/quirxi" />
<xsl:variable name="qadmin_table" select="." /> selects surname,
lastname,...

Here I want to give out the node set, but it is only a string!
<xsl:value-of
select="concat($self_quirxi,'/globals/pers_datas/pers_data/',$qadmin_tab
le)" />

Where is the bug?
markus


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread