xsl-list
[Top] [All Lists]

Re: Understanding Identity Transformations

2005-02-14 12:14:01
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="*[(_at_)cat!='BLUE']" />

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--