Subject: Excluding Attributes
From: Andrew Moore <A.Moore@xxxxxxxxxxx>
Date: Thu, 11 May 2000 14:03:32 +0100
|
<xsl:for-each select="cmdTargets">
<Target>
<xsl:for-each select="@*">
<xsl:copy><xsl:value-of /></xsl:copy>
</xsl:for-each>
</Target>
</xsl:for-each>
Apologies if this is a dumb question! I've only been using XSL for 2 days.
The above xsl adds a Target element for each cmdTargets element in the
source and then copies all the attributes across.
How could I modify this so that any attributes named "ID" and "Version" are
not copied to the output?
Thanks for any help, I'm really stuck on this!
Andrew.
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|