xsl-list
[Top] [All Lists]

RE: Dynamical work with child nodes

2004-04-06 07:17:00
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(_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



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