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: Checking for empty values


> >To test if the element exists and is non-empty:
> >
> ><xsl:template match="book">
> ><xsl:if test="string(author)">
> 
> Does this form of the test work for elements that only contain other 
> elements (i.e. no text nodes)? 

No. To test that the element exists and has text and/or element content:

<xsl:if test="author/* or author/text()">

Mike 


 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]