RE: how to access the text of just the current element?

Subject: RE: how to access the text of just the current element?
From: Kay Michael <Michael.Kay@xxxxxxx>
Date: Thu, 23 Nov 2000 13:00:54 -0000
> What is the best way of
> getting just the text from the current element?

You can get a node-set containing the immediate text node children as

xsl:variable name="t" select="text()"

If you want to output these nodes, concatenated, don't use xsl:value-of
directly, this will only give you the first one. Instead process them all:

xsl:for-each select="$t"
  xsl:value-of select="."

Mike Kay


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


Current Thread