xsl-list
[Top] [All Lists]

Re: Get all the node as text

2004-02-04 08:04:52
At 2004-02-04 15:38 +0100, Lionel Crine wrote:
I have this node :
<ttexte daten="20040203" id="RL170-0AAAAA" no="512-22" type="ARRANGEMENTADMINISTRATIF">
  Arrangement administratif n
  <sp>o</sp>
  512-22 du
  <tdate daten="20040203">3 février 2004</tdate>
  </ttexte>

And I want to get :

-> Arrangement administratif n o 512-22 du 3 février 2004


as a result.

<xsl:value-of select="ttexte"/>

The value of an element node is the concatenation of all of the descendent text nodes.

If you didn't want the line feeds, then you could do:

<xsl:value-of select="normalize-space(ttexte)"/>

I hope this helps.

............................. Ken



--
Public courses: sign up for one or both soon to reserve your seat!
Each week:  Monday-Wednesday: XSLT/XPath;  Thursday-Friday: XSL-FO
Washington, DC: 2004-03-15           San Francisco, CA: 2004-03-22
Hong Kong, China: 2004-05-17           Bremen, Germany: 2004-05-24
World-wide on-site corporate, government & user group XML training

G. Ken Holman                 mailto:gkholman(_at_)CraneSoftwrights(_dot_)com
Crane Softwrights Ltd.          http://www.CraneSoftwrights.com/s/
Box 266, Kars, Ontario CANADA K0A-2E0    +1(613)489-0999 (F:-0995)
Male Breast Cancer Awareness  http://www.CraneSoftwrights.com/s/bc


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



<Prev in Thread] Current Thread [Next in Thread>