RE: [xsl] How Use XSLT to Test For Multiple Values

Subject: RE: [xsl] How Use XSLT to Test For Multiple Values
From: "Gary Fix" <gary.fix@xxxxxxxxxx>
Date: Fri, 6 Aug 2004 11:34:40 -0700
Thanks Michael!
That was my error!
:-)

-----Original Message-----
From: Michael Kay [mailto:mhk@xxxxxxxxx]
Sent: Friday, August 06, 2004 10:40 AM
To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Subject: RE: [xsl] How Use XSLT to Test For Multiple Values


<xsl:if test="DeviceCode='E' and not(DeviceCode='B')">

Beware of the distinction between

A!=1   (:there is an A that's not =1:)

and

not(A=1)   (:there is no A that's =1:)

Michael Kay

> -----Original Message-----
> From: Gary Fix [mailto:gary.fix@xxxxxxxxxx]
> Sent: 06 August 2004 18:37
> To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
> Subject: [xsl] How Use XSLT to Test For Multiple Values
>
> Hi,
> I have an xml file with zero, one or more tags something like this:
>
> 					<DeviceCode>E</DeviceCode>
> 					<DeviceCode>X</DeviceCode>
>
> I want to test if certain code combinations exist such as "If
> <DeviceCode> = 'A' and <DeviceCode> != 'B'"
> Can someone please help with the best way to do this?
> thanks in advance,
> gary

Current Thread