[Home] [By Thread] [By Date] [Recent Entries]
>
> 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
|

Cart



