This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

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


> 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

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]