名稱空間感知功能

<root xmlns="http://test/">
    <element xmlns:example="http://foobar/">
        <example:hello_world attribute="another example" />
    </element>
</root>

表示式/root 將不返回任何內容,因為在文件的根級別沒有名為 root 的非名稱空間元素。但是,以下返回 <root xmlns="http://test/"> 元素。

/*[namespace-uri() = 'http://test/' and local-name() = 'root']