XML information pipe

Ihre Spezialisten für XML

Banner Werbung

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

You are on XING ?
We too. Become a member in our group and discuss exciting topics with us!
XING

Software
XSL Formatter >>>
antillesXML >>>

About team Heidelberg
Contact
data2type team data2type
References
Imprint


About team Karlsruhe
Contact
parsQube team parsQube
Imprint

Start with//

If the path starts with // then all elements in the document which fulfill following criteria are selected.


//BBB

Select all elements BBB


<AAA>

    <BBB/>

    <CCC/>

    <BBB/>

    <DDD>

        <BBB/>

    </DDD>

    <CCC>

        <DDD>

            <BBB/>

            <BBB/>

        </DDD>

    </CCC>

</AAA>



//DDD/BBB

Select all elements BBB which are children of DDD


<AAA>

    <BBB/>

    <CCC/>

    <BBB/>

    <DDD>

        <BBB/>

    </DDD>

    <CCC>

        <DDD>

            <BBB/>

            <BBB/>

        </DDD>

    </CCC>

</AAA>