XML information pipe
Ihre Spezialisten für XML
Inroduction to our technologies
XML >>>
HTML >>>
CSS >>>
Unicode >>>
SVG >>>
MathML >>>
XSLT >>>
XPath >>>
Schemas >>>
RegEx >>>
Python >>>
SKOS >>>
Dublin Core >>>
W3C Recommendation XML Technology
XML >>>
HTML >>>
CSS >>>
Unicode >>>
SVG >>>
MathML >>>
XSLT >>>
XPath 1.0 standard >>>
Schemas >>>
RegEx >>>
Python >>>
SKOS >>>
Dublin Core >>>
Software
XSL Formatter >>>
antillesXML >>>
About team Heidelberg
Contact
data2type team
References
Imprint
The basic XPath syntax is similar to filesystem addressing.
If the path starts with the slash / , then it represents an absolute path to the required element.
Select the root element AAA
<AAA>
<BBB/>
<CCC/>
<BBB/>
<BBB/>
<DDD>
<BBB/>
</DDD>
<CCC/>
</AAA>
Select all elements CCC which are children of the root element AAA
<AAA>
<BBB/>
<CCC/>
<BBB/>
<BBB/>
<DDD>
<BBB/>
</DDD>
<CCC/>
</AAA>
Select all elements BBB which are children of DDD which are children of the root element AAA
<AAA>
<BBB/>
<CCC/>
<BBB/>
<BBB/>
<DDD>
<BBB/>
</DDD>
<CCC/>
</AAA>