RE: [xsl] Dynamical work with child nodes

Subject: RE: [xsl] Dynamical work with child nodes
From: "G. Ken Holman" <gkholman@xxxxxxxxxxxxxxxxxxxx>
Date: Tue, 06 Apr 2004 10:34:55 -0400
At 2004-04-06 16:23 +0200, Roland Juergens wrote:
Yes ! Thanks a lot, this helps. Now I only need to know how to get the total
number of children,

count(*) will return the count of the child elements of any name.


like *[max],

"max"? *[max] will give you the children elements that have element children named "max".


and how to get the name (not the content) of the current node I
have selected with *[3]

name(*[3]) ... but this is only good for exposition, not for testing.


Again, look at my earlier email ... when testing for an element it is not namespace safe to use the name() function. I remind my students that name() is only for exposition and not for element identity testing ... use the self:: axis instead.

To test for "am I a figure element" use: test="self::figure"

I hope this helps.

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

From: G. Ken Holman [mailto:gkholman@xxxxxxxxxxxxxxxxxxxx]
Sent: Dienstag, 6. April 2004 16:17
To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Subject: RE: [xsl] Dynamical work with child nodes
...
This node test is often used to check if the immediately preceding or
following element is of a particular type, first by finding the closest of
any name and then checking to see if that one is of the type you are
looking for, in this case "is my immediately preceding sibling a figure
element?":

test="preceding-sibling::*[1][self::figure]"


--
Public courses: Spring 2004 world tour of hands-on XSL instruction
Each week:   Monday-Wednesday: XSLT/XPath; Thursday-Friday: XSL-FO
Hong Kong May 17-21; Bremen Germany May 24-28; Helsinki June 14-18

World-wide on-site corporate, govt. & user group XML/XSL training.
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)
Male Breast Cancer Awareness  http://www.CraneSoftwrights.com/s/bc

Current Thread