xsl condition operator,condition operator xsl,xml .net union xpath,xsl not operator,xpath union expression .net,xpath and condition operator,xpath element exists,not operator xsl,question on ns2 mailing list,xpath ns1 ns2, xml%%%xsl condition operator - Re: XPATH

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

Re: XPATH | union operator question

Subject: Re: XPATH | union operator question
From: "Dimitre Novatchev" <dnovatchev@xxxxxxxxx>
Date: Sun, 21 Dec 2003 12:16:11 +0100
xsl condition operator
> I have a similar problem with this evaluation in document order:
>
>
>    <things>
>      <thing/>
>      <thing xml:lang="de"/>
>      <thing xml:lang="en"/>
>    </things>
>
>
> <value-of select="(thing[lang($mylang)] | thing)[1]"/>
>
>
> What I tried with this was to get a specific thing with the requested
> language $mylang, and if no such element exists, to use the generic
> thing without the xml:lang attribute. Obviously this does not work, I
> always get the <thing/> first.
>
> Is there an elegant solution to this?

The following Xpath expression selects a node-set $ns1 if a condition $p is
true and selects a node-set $ns2 if the same condition $p is not true:

     $ns1[$p]  |  $ns2[not($p)]

When it is known that the condition $p is that $ns1 must be non-empty, the
above XPath expression can be simplified to the following:

     $ns1 | $ns2[not($ns1)]

In this specific case we'll have:

    /*/thing[lang($mylang)]    |
   /*/thing[1][not(/*/thing[lang($mylang)] )]



Dimitre Novatchev.
FXSL developer

http://fxsl.sourceforge.net/ -- the home of FXSL
Resume: http://fxsl.sf.net/DNovatchev/Resume/Res.html




 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.