Re: [xsl] Is there an OR for XSL IF?

Subject: Re: [xsl] Is there an OR for XSL IF?
From: Wendell Piez <wapiez@xxxxxxxxxxxxxxxx>
Date: Wed, 04 Jan 2012 11:03:32 -0500
Hi,

On 1/4/2012 12:49 AM, Murray McDonald wrote:
The "or" operator is part of the XPath spec.  Your test would be done as
below.

Also note that the "=" and "eq" operators are not equivalent and it's a good
idea to get into the habit of using them correctly.
...
<xsl:if test="myfield/field_is_available/data eq 'Yes' or
myfield/seconsfield_is_available/data eq 'Yes'">

Indeed, given the semantics of '=' (for node value comparison) and '|' (union operation over node sets or sequences) this could be refactored:


<xsl:if test="(myfield/field_is_available/data |
               myfield/seconsfield_is_available/data) = 'Yes'">

or, in XPath 2.0:

myfield/(field_is_available|seconsfield_is_available)/data = 'Yes'

Cheers,
Wendell

--
======================================================================
Wendell Piez                            mailto:wapiez@xxxxxxxxxxxxxxxx
Mulberry Technologies, Inc.                http://www.mulberrytech.com
17 West Jefferson Street                    Direct Phone: 301/315-9635
Suite 207                                          Phone: 301/315-9631
Rockville, MD  20850                                 Fax: 301/315-8285
----------------------------------------------------------------------
  Mulberry Technologies: A Consultancy Specializing in SGML and XML
======================================================================

Current Thread