RE: [xsl] SETS comparison..?

Subject: RE: [xsl] SETS comparison..?
From: "Michael Kay" <michael.h.kay@xxxxxxxxxxxx>
Date: Wed, 30 Jan 2002 18:54:19 -0000
> 
> Is it possible to group values not having to repeat the same 
> attribute over
> and over?
> 
> e.g.: <xsl:if test=". in ['a', 'b', 'd']">
> 
> 
In XSLT 2.0 you can write

<xsl:if test=". = ('a', 'b', 'c')">

or if you want to make the existential quantification explicit,

<xsl:if test="some $x in ('a', 'b', 'c') satisfies $x = ."

Mike Kay

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


Current Thread