Hi,
Take the following example:
Code:
<root>
<foo att1="1" att2="2" att3="3">Data</foo>
</root>
Say I want to select all attributes of foo except @att2, how can I do this.
When I try:
Code:
<xsl:for-each select="@*[not(@att2)]">
The processor complains (saxon 9.1.0.1):
Code:
The attribute axis starting at an attribute node will never select anything