This is the mail archive of the xsl-list@mulberrytech.com mailing list .


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

RE: Simple Problem


> 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

Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]