RE: How do I skip an element?

Subject: RE: How do I skip an element?
From: Kay Michael <Michael.Kay@xxxxxxx>
Date: Wed, 5 May 1999 11:06:32 +0100
Larry Mason asked:
> I am trying to produce a table ...
> Here are some things I've tried ...
> I am using xt ...
> 
> <xsl:for-each select="data/*[first-of-any()]/*[name(.) !='column2']">
>    <TH><xsl:value-of select="name(.)"/></TH>
> </xsl:for-each>
> 
> <xsl:for-each select="data/*[first-of-any()]/* $and$ data/*/*[name(.)
> !='column2']">
>    <TH><xsl:value-of select="name(.)"/></TH>
> </xsl:for-each>
> 
Have you read the spec? 
1: There is no "!=" operator in XSL. Use "not(a=b)".
2: There is no "$and$" operator in XSL. Use "and".

Both these constructs are from the proprietary Microsoft XSL dialect.

Mike Kay


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread