Re: [xsl] Or with xsl:when to check for multiple values

Subject: Re: [xsl] Or with xsl:when to check for multiple values
From: "J.Pietschmann" <j3322ptm@xxxxxxxx>
Date: Fri, 31 Oct 2003 23:05:35 +0100
Dipesh Khakhkhar wrote:
Can i do something like

<xsl:when test="$var = 'val1'" or "$var = 'val2'" or "$var = 'val3'">
  some action
</xsl:when>

No, that's not valid XML. Use <xsl:when test="$var = 'val1' or $var = 'val2' or $var = 'val3'"> (Note the difference)

I hope i am clear in explaining my problem.

Why don't you just look it up in - a good book, - the XSL FAQ, - one of the online tutorials or - the XPath spec?

J.Pietschmann


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



Current Thread