Attribute selection with namespaces

Aufgabenstellung

Quelldokument

<document xmlns:xlink="http://www.w3.org/1999/xlink">
  <reference xlink:href="http://www.google.de/" />
</document>

Aufgabe

Select the value of the attribute “href”, which is connected to the namespace “http://www.w3.org/1999/xlink”. For your XPath expression, this namespace is attached to the prefix x.

Gewünschte Selektion (Textausgabe)

http://www.google.de/

Verfügbare Präfixe für den XPath-Ausdruck

PräfixNamensraum
xhttp://www.w3.org/1999/xlink

Übung

Ihre Eingabe

Eine Lösung wäre: Lösung