xsl-list
[Top] [All Lists]

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

2003-10-31 15:05:35
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



<Prev in Thread] Current Thread [Next in Thread>