A
Andy Fish
in XSLT, if I want to concatenate _all_ the child text nodes, I can just do
<xsl:value-of select=".">
however, if I want to select and concatente only _some_ of the text nodes.
for instance
<xsl:value-of select=".//foo/text()">
this doesn't work as it just takes the first element in the node set. Is
there any way of achieving this without using <xsl:for-each> to explicitly
loop round them all?
TIA
Andy
<xsl:value-of select=".">
however, if I want to select and concatente only _some_ of the text nodes.
for instance
<xsl:value-of select=".//foo/text()">
this doesn't work as it just takes the first element in the node set. Is
there any way of achieving this without using <xsl:for-each> to explicitly
loop round them all?
TIA
Andy