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:*.
"":*. – Michael Kay Nov 25 '11 at 17:21name()is unprefixed (doesn't contain an':', or, alternatively, that thename()andlocal-name()are identical. – Dimitre Novatchev Nov 25 '11 at 19:19