RE: Simple Problem

Subject: RE: Simple Problem
From: Kay Michael <Michael.Kay@xxxxxxx>
Date: Thu, 27 Apr 2000 15:55:54 +0100
> This should solve the problem:
> 
> <xsl:template match="*[text() > '']">
> 	<xsl:value-of select="name()"/>: <xsl:apply-templates /><br/>
> </xsl:template>
> 
If it solves any problem, it only does so by accident. ">" is always a
numeric comparison, so it means [number(text()) > number('')] which will
always be false since number('') is NaN.

Mike Kay


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


Current Thread