xml editor

Supported platforms

Compatible with Windows7 & Mac OS X Snow Leopard

Ready for data server software
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date]

RE: [xsl] match all attributes except @foo


Subject: RE: [xsl] match all attributes except @foo
From: "Michael Kay" <mhk@xxxxxxxxx>
Date: Fri, 9 Apr 2004 09:46:46 +0100

> I currently have this inside an <xsl:copy>:
> 
> 	      <xsl:apply-templates select="node() | @*" />
> 
> The second branch of that union selects all attributes.  I want to 
> change it so that it matches all attributes except for the attribute 
> 'foo'.
> 
> IOW, my <xsl:copy> should filter out @foo.  How do I do it?
> 

You can write @*[name() != 'foo']. In XSLT 2.0 you can write (@* except
@foo). But a better way is perhaps to declare a template rule for @foo that
does nothing:

<xsl:template match="@foo" priority="3"/>

Michael Kay


Current Thread
Keywords
XML Editor | XML Author | WYSIWYG Editors | Schema Editor | XSD Documentation | XSL/XSLT Editor | XQuery | XML Databases | SVN Client
© 2002-2011 SyncRO Soft Ltd. All rights reserved. | Sitemap | Privacy Policy | This website was created & generated with <oXygen/>®XML Editor