Re: [xsl] xpath question

Subject: Re: [xsl] xpath question
From: "G. Ken Holman" <gkholman@xxxxxxxxxxxxxxxxxxxx>
Date: Wed, 09 Jul 2003 10:20:05 -0400
At 2003-07-09 13:41 +0000, abbouh wrote:
i want to access to the preceding node N1 from a node N2
and also its  following node N3
so i use this instruction:
for N1 :  $N2/preceding-sibling::node()
for N3 :  $N2/following-sibling::node()
but it's not correct,i don't know why,

You are saying "node" but I think you mean "element" and you will, therefore, need preceding-sibling::*[1] for the closest element.


my xml file is like:

........
<N1>
<N2>
<N3>
........

Then you are not considering that in the following:


   <N1>xxx</N1>
   <N2>yyy</N2>

there is a text node between the element node named "N1" and the element node named "N2".

I hope this helps.

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

--
Upcoming hands-on courses: in-house corporate training available;
North America public:  XSL-FO Aug 4,2003; XSLT/XPath Aug 12, 2003

G. Ken Holman                mailto:gkholman@xxxxxxxxxxxxxxxxxxxx
Crane Softwrights Ltd.         http://www.CraneSoftwrights.com/s/
Box 266, Kars, Ontario CANADA K0A-2E0   +1(613)489-0999 (F:-0995)
ISBN 0-13-065196-6                      Definitive XSLT and XPath
ISBN 0-13-140374-5                              Definitive XSL-FO
ISBN 1-894049-08-X  Practical Transformation Using XSLT and XPath
ISBN 1-894049-11-X              Practical Formatting Using XSL-FO
Member of the XML Guild of Practitioners:    http://XMLGuild.info
Male Breast Cancer Awareness http://www.CraneSoftwrights.com/s/bc


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



Current Thread