Just a quick question:

If I have an element say

<element a:lol="." a:rofl="." b:lol="." b:rofl="." lol="." rofl="."/>

I know I can select all the attributes under namespace a with @a:*

How do I select all the attributes without any namespace?

I am aware that @*[namespace-uri()=''] works, but I was hoping for something more compact - like a keyword prefix. eg: @none:*.

link|improve this question

62% accept rate
Sadly, you can't - until XPath 3.0, which provides "":*. – Michael Kay Nov 25 '11 at 17:21
There is more than one way to do it -- you may verify that the name() is unprefixed (doesn't contain an ':', or, alternatively, that the name() and local-name() are identical. – Dimitre Novatchev Nov 25 '11 at 19:19
Cool, thanks for the extra tips! – Arth Dec 1 '11 at 17:46
feedback

2 Answers

up vote 1 down vote accepted

@*[namespace-uri() = ''] seems to me good approach.

link|improve this answer
OK i take that into account – Vincent Biragnet Nov 25 '11 at 15:50
Thanks, couldn't answer my own qu within 8 hours due to my ranking! – Arth Nov 25 '11 at 17:05
feedback

You can also use:

@*[name() eq local-name()]

In XPath any unprefixed name is considered to be in "no namespace", therefore this expression selects only unprefixed names, that is, names that are in "no namespace".

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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