RE: [xsl] Accessing text between nodes

Subject: RE: [xsl] Accessing text between nodes
From: "Michael Kay" <mhkay@xxxxxxxxxxxx>
Date: Wed, 27 Jun 2001 14:50:04 +0100
> My Code is like this:
> <Node>Hello
> <SubNode>Hello Here!</SubNode>
> <SubNode>Hello Here!</SubNode>
> </Node>
>
> Now I want to access text "Hello" from <Node>.When I use <xsl:value-of
> select="."/>
> It gives me Hello
> 		Hello Here!
> 		Hello Here!
> But I dont want "Hello Here!" text.I want "Hello" text only.
> Can anybody please help to get this.

xsl:value-of select="text()[1]"

(The [1] is just for clarity, without it you would get the first text node
anyway).

Mike Kay
Software AG


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


Current Thread