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


Yogesh

> 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.

<xsl:value-of select="text()" />
gives you the string value of the first text child, which is in your
example "Hello\n"
(\n = Newline)
To get rid of the newline use normalize-space(text())

Cheers,
Oliver


/-------------------------------------------------------------------\
|  ob|do        Dipl.Inf. Oliver Becker                             |
|  --+--        E-Mail: obecker@informatik.hu-berlin.de             |
|  op|qo        WWW:    http://www.informatik.hu-berlin.de/~obecker |
\-------------------------------------------------------------------/


 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]