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]
Other format: [Raw text]

RE: SETS comparison..?


> 
> 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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]