Subject: RE: Concat Content of Node to Another?
From: "Haarman, Michael" <mhaarman@xxxxxxxxx>
Date: Mon, 12 Dec 2005 12:28:25 -0600
|
> -----Original Message-----
> From: Donald M Rinderknecht
> How can I concatenate the value of a node to a string, or
> actually value
> of another node?
Just put the values next to each other in the result tree, that is, if the
Presentation element were the root of your document:
<xsl:value-of select="*/second/imagepath"/><xsl:value-of
select="substring-before(*/third/Slide/Filename,'.')"/>.tif
|