Selecting elements by name

Aufgabenstellung

Quelldokument

<document>
  <item_0001>Erstes Element</item_0001>
  <item_0002>Zweites Element</item_0002>
  <item_0003>Drittes Element</item_0003>
  <item_0004>Viertes Element</item_0004>
  <other_0001>Erstes Element</other_0001>
  <other_0002>Zweites Element</other_0002>
</document>

Aufgabe

Select all elements with the name beginning with »item«.

Gewünschte Selektion (XML-Ausgabe)

  • <item_0001>Erstes Element</item_0001>
  • <item_0002>Zweites Element</item_0002>
  • <item_0003>Drittes Element</item_0003>
  • <item_0004>Viertes Element</item_0004>

Übung

Ihre Eingabe

Eine Lösung wäre: Lösung