Subject: RE: Match Question
From: "Michael Semcheski" <mhs-list@xxxxxxxxx>
Date: Mon, 20 Jan 2003 16:55:22 -0500
|
Can't wait. Any good links to what will be new with XSLT 2.0? To busy to
really look for myself at the moment.
-----Original Message-----
From: owner-xsl-list@xxxxxxxxxxxxxxxxxxxxxx
[mailto:owner-xsl-list@xxxxxxxxxxxxxxxxxxxxxx] On Behalf Of Michael Kay
Sent: Monday, January 20, 2003 2:48 PM
To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Subject: RE: Match Question
> Michael Semcheski wrote:
>
> >match="z:row[@Type='Matrix']/z:row[@MatrixOpt='1']
> >| z:row[@Type='Matrix']/z:row[@MatrixOpt='5']
> >| z:row[@Type='Matrix']/z:row[@MatrixOpt='6']"
> >
> >
> Try
>
> match="z:row[@Type='Matrix']/z:row[@MatrixOpt='1' or
> @MatrixOpt='5' or @MatrixOpt='6']"
>
> for something that is a bit less cumbersome.
>
With XSLT 2.0 you can write
match="z:row[@Type='Matrix']/z:row[@MatrixOpt=('1', '5', '6')]"
FWIW!
Michael Kay
Software AG
home: Michael.H.Kay@xxxxxxxxxxxx
work: Michael.Kay@xxxxxxxxxxxxxx
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|