[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: or predicates

Subject: Re: or predicates
From: Jeni Tennison <jeni@xxxxxxxxxxxxxxxx>
Date: Wed, 6 Feb 2002 15:13:03 +0000
Re:  or predicates
Hi Bernward,

> I try to put a | inside a predicate but it doesn't work.

The | is the union operator, used to create a union of two node sets.
The operands for the union operator must be node sets. When you do:

> <xsl:apply-templates select="doc[N1='xxx' | N2='yyy']"/>

It's an error because the expressions "N1 = 'xxx'" and "N2 = 'yyy'"
are not node sets. On the other hand:

> Putting | outside the predicate works. 
> <xsl:apply-templates select="doc[N1='xxx'] | doc[N2='yyy']"/>

Here the expressions "doc[N1 = 'xxx']" and "doc[N2 = 'yyy']" do
evaluate to node sets (of doc elements), so the union operator can
create a union of doc elements whose N1 child elements equal 'xxx' and
those doc elements whose N2 child elements equal 'yyy'.

If you want 'or', then you should use 'or':

  <xsl:apply-templates select="doc[N1 = 'xxx' or N2 = 'yyy']" />

Cheers,

Jeni

---
Jeni Tennison
http://www.jenitennison.com/


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.