[xsl] copy attributes, except some

Subject: [xsl] copy attributes, except some
From: ac <ac@xxxxxxxxxxxxx>
Date: Thu, 29 Oct 2009 02:37:54 -0400
Hi,

Sorry for noise again, but David did provide a possibly better option as in:
<xsl:copy-of select="@* except (attribute(name1), attribute(name2), attribute(name3), attribute(name4))"/>


Thanks,
ac




Hi,


In XSLT 2.0, assuming that the $excepted-attributes variable is not used
anywhere else, and apart from also using an attribute-set in defining
the $excepted-attributes variable value xx element, is there a better
way to copy all attributes except some specific ones, in a namespace
safe way, rather than:
<xsl:variable name="excepted-attributes"><xx name1="" name2="" name3=""
name4="" name5="" .../>
<xsl:copy-of select="@*[not(node-name(.) =
$excepted-attributes/xx/@*/node-name(.))]"/>

Thank you,
ac

Current Thread