Re: [xsl] XPATH | union operator question

Subject: Re: [xsl] XPATH | union operator question
From: "G. Ken Holman" <gkholman@xxxxxxxxxxxxxxxxxxxx>
Date: Fri, 19 Dec 2003 11:40:10 -0500
At 2003-12-19 16:05 +0100, christof.hoeke@xxxxxxx wrote:
###TODO
in the following xml: if the inner @color is there use it, otherwise use the outer @color

Use: ( @color | ../@color )[last()]


###XML
<test>
<line color="outer1">
<x color="inner1"/>
</line>
</test>
...
<xsl:template match="x">
<xsl:value-of select="@color | parent::line/@color"/><br/>
<xsl:value-of select="parent::line/@color | @color "/><br/>
<xsl:value-of select="(@color | parent::line/@color)[1]"/><br/>
<xsl:value-of select="(parent::line/@color | @color)[1] "/><br/>

In all four of the above, you are asking for the first in document order. XPath returns the nodes unordered but XSLT examines the returned nodes in document order. Since the <line> element is before the <x> element in document order, all four expressions are obtaining the colour attribute of <line>.


what does the | operator in "@color | parent::line/@color" select? only the most specific?

No, it only specifies the union of the two sets, with no duplicates. XSLT will then consider the resulting set always in document order.


In my suggestion at top, the last() predicate will select the last of the set, which if there is only one is the one itself, but if there are two it takes the inner one.

I hope this helps.

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


-- North America (Washington, DC): 3-day XSLT/2-day XSL-FO 2004-02-09 Instructor-led on-site corporate, government & user group training for XSLT and XSL-FO world-wide: please contact us for the details

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