[XSL-LIST Mailing List Archive Home] [By Thread] [By Date]

Re: [xsl] Understanding Identity Transformations


Subject: Re: [xsl] Understanding Identity Transformations
From: Karl Stubsjoen <kstubs@xxxxxxxxx>
Date: Mon, 14 Feb 2005 12:14:01 -0700

Ok.. .the following is working great, but I am using != operand.  How
do you write the below match using not() and achieve same results?

<xsl:template match="@* | node()">
  <xsl:copy>
	<xsl:apply-templates select="@*"/>
	<xsl:apply-templates />
  </xsl:copy>
</xsl:template>

<xsl:template match="*[@cat!='BLUE']" />


Current Thread