RE: [xsl] multiple if and expression

Subject: RE: [xsl] multiple if and expression
From: "Jean-Baptiste COMBES" <jbcombes@xxxxxxxx>
Date: Tue, 1 Oct 2002 17:51:10 +0200
>
> Hello
> Im struggling with the multiple if expression.
> <xsl:if test="not(@da = '') 'and' not(@dada = '') 'and'
> not(@dadada = '')">
> proceed
> </xsl:if>
>
> I found something on
> http://www.w3.org/TR/xpath#NT-AndExpr
>

Seems to me you misred the grammar. 'and' means litteral and (as opposed to
a token defined elsewhere).
Thus you meant:
<xsl:if test="not(@da = '') and not(@dada = '') and  not(@dadada = '')">

--
Jean-Baptiste Combes


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


Current Thread