Using XPath, how to select nodes which have no attributes (where attribute count = 0)?
For example:
//node[not(@*)]
That's the XPath to select all nodes named "node" in the document without any attributes.