vote up 1 vote down star

I want to select the topmost element in a document that has a given namespace (prefix).

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.

flag
In the course of writing up my post, I stumbled into a working solution, so I community-owned the question and then posted the answer. Enjoy! – Craig Walker Sep 22 '08 at 0:01

2 Answers

vote up 2 vote down check

In XPath 2.0 and XQuery 1.0 you can test against the namespace prefix using the in-scope-prefixes() function in a predicate. e.g.

//*[in-scope-prefixes(.)='html']

If you cant use v2, in XPath 1.0 you can use the namespace-uri() function to test against the namespace itself. e.g.

//*[namespace-uri()='http://www.w3c.org/1999/xhtml']
link|flag
vote up 1 vote down

The XPath expression that I want is:

/html:html/html:body/node()|/foo:*

Where the "html" prefix is mapped to the XHTML namespace, and the "foo" prefix is mapped to my target namespace.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.