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


You are right, of course. What I should have put was 

*[text() != '']

Not paying enough attention *grin*

Ben

> -----Original Message-----
> From: Kay Michael [mailto:Michael.Kay@icl.com]
> Sent: 27 April 2000 15:56
> To: 'xsl-list@mulberrytech.com'
> Subject: 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
> 


 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]