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:17:00 -0400
At 2004-04-06 16:08 +0200, Roland Juergens wrote:
and how can i access a subelement without using its name ?

The node test for an element of any name is "*", so to access the value of the third child and you don't care for the name of the children would be:


select="*[3]"

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]"

I hope this helps.

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


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