elements that are children of the context node.
p/text()[2] The second text node in each element in the context node.
ancestor::book[1] The nearest ancestor of the context node.
ancestor::book[author][1] The nearest ancestor of the context node and this element has an element as its child.
ancestor::author[parent::book][1] The nearest ancestor in the current context and this element is a child of a element.
Example of Unions ( | )
To demonstrate the union operation, we use the following XPath expression:
x | y/x
selects all the elements whose values are green or blue in the following XML file:
XML File (data1.xml)
green
blue
blue
red
red
green
XSLT File (union.xsl)
,
,
Formatted Output
green,blue,blue,green
Processor Output
green,blue,blue,green