Subject: RE: How Use XSLT to Test For Multiple Values
From: "Michael Kay" <mhk@xxxxxxxxx>
Date: Fri, 6 Aug 2004 18:40:21 +0100
|
<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: 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
|