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: Accessing text between nodes


One more favour..
<Node>
<SomeNode></SomeNode>
Hello
 <SubNode>Hello Here!</SubNode>
 <SubNode>Hello Here!</SubNode>
</Node>

Now in this case if I want to access Hello how I should go abt it..
Thanx
Yogesh.

-----Original Message-----
From: owner-xsl-list@lists.mulberrytech.com
[mailto:owner-xsl-list@lists.mulberrytech.com]On Behalf Of Thomas B.
Passin
Sent: Wednesday, June 27, 2001 7:38 PM
To: xsl-list@lists.mulberrytech.com
Subject: Re: [xsl] Accessing text between nodes


Use <xsl:value-of select='text()'/> instead.  This will select the text node
that belongs to a Node element.  The only text element of Node is "Hello",
and that is what displays.

Cheers,

Tom P

[Yogesh]

> I need help for accessing text between nodes.
> 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-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


 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]