Select Element in a Namespace with XPath - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T04:57:51Zhttp://stackoverflow.com/feeds/question/112601http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/112601/select-element-in-a-namespace-with-xpath1Select Element in a Namespace with XPathCraig Walker2008-09-21T23:59:47Z2009-02-12T01:28:57Z
<p>I want to select the topmost element in a document that has a given namespace (prefix).</p>
<p>More specifically: I have XML documents that either start with /html/body (in the XHTML namespace) or with one of several elements in a particular namespace. I effectively want to strip out /html/body and just return the body contents OR the entire root namespaced element. </p>
http://stackoverflow.com/questions/112601/select-element-in-a-namespace-with-xpath/112602#1126021Answer by Craig Walker for Select Element in a Namespace with XPathCraig Walker2008-09-22T00:00:46Z2008-09-22T00:00:46Z<p>The XPath expression that I want is:</p>
<pre><code>/html:html/html:body/node()|/foo:*
</code></pre>
<p>Where the "html" prefix is mapped to the XHTML namespace, and the "foo" prefix is mapped to my target namespace.</p>
http://stackoverflow.com/questions/112601/select-element-in-a-namespace-with-xpath/113095#1130952Answer by Jim Burger for Select Element in a Namespace with XPathJim Burger2008-09-22T03:54:45Z2008-09-22T03:54:45Z<p>In XPath 2.0 and XQuery 1.0 you can test against the namespace prefix using the <a href="http://www.w3.org/TR/xquery-operators/#func-in-scope-prefixes" rel="nofollow">in-scope-prefixes()</a> function in a predicate.
e.g.</p>
<pre><code>//*[in-scope-prefixes(.)='html']
</code></pre>
<p>If you cant use v2, in XPath 1.0 you can use the <a href="http://www.w3.org/TR/xpath#function-namespace-uri" rel="nofollow">namespace-uri()</a> function to test against the namespace itself.
e.g.</p>
<pre><code>//*[namespace-uri()='http://www.w3c.org/1999/xhtml']
</code></pre>