Conditional element selection

Aufgabenstellung

Quelldokument

<document xmlns:xlink="http://www.w3.org/1999/xlink">
  <linkList name="A">
    <document xlink:href="15024" />
    <document xlink:href="15028" />
  </linkList>
  <linkList name="B">
    <document xlink:href="15030" />
    <document xlink:href="15032" />
  </linkList>
</document>

Aufgabe

Select all document elements below the node “linkList” with the name A.

Gewünschte Selektion (XML-Ausgabe)

  • <document xlink:href="15024" xmlns:xlink="http://www.w3.org/1999/xlink" />
  • <document xlink:href="15028" xmlns:xlink="http://www.w3.org/1999/xlink" />

Übung

Ihre Eingabe

Eine Lösung wäre: Lösung