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:*.
@*[namespace-uri() = '']seems to me good approach.