[XSL-LIST Mailing List Archive Home] [By Thread] [By Date]

RE: [xsl] 2 Predicates in 1 for-each, possible?


Subject: RE: [xsl] 2 Predicates in 1 for-each, possible?
From: "Bert" <arm@xxxxxxxxx>
Date: Wed, 11 Feb 2004 08:06:24 +0100

Hello Ken,

Thanks a lot. This is what I was looking for.
Sorry for the lack of information.

Kind regards,
Bert

P.S. It was nice to meet you at the 3B2 congress in Miami recently.



-----Original Message-----
From: owner-xsl-list@xxxxxxxxxxxxxxxxxxxxxx
[mailto:owner-xsl-list@xxxxxxxxxxxxxxxxxxxxxx]On Behalf Of G. Ken Holman
Sent: dinsdag 10 februari 2004 22:59
To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Subject: Re: [xsl] 2 Predicates in 1 for-each, possible?


At 2004-02-10 21:29 +0100, Bert wrote:
>Allow me to ask a question about 2 predicates in 1 for-each.

I think you want a union of two expressions, not two predicates, though you
do not give a lot of detail of what you are looking for.  An example is
below.

I hope this helps.

................... Ken

T:\ftemp>type bert.xml
<root>
  <organisation>
   <communication>
    <email>
     <emailaddress>e-mail@xxxxxxx(1)</emailaddress>
    </email>
   </communication>
   <communication2>
    <emailaddress2>e-mail@xxxxxxx(2)</emailaddress2>
   </communication2>
  </organisation>
  <organisation>
   <communication>
    <email>
     <emailaddress>e-mail@xxxxxx(1)</emailaddress>
    </email>
   </communication>
   <communication2>
    <emailaddress2>e-mail@xxxxxx(2)</emailaddress2>
   </communication2>
  </organisation>
</root>

T:\ftemp>type bert.xsl
<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  <xsl:output method="xml" indent="yes"/>
  <xsl:template match="/">
   <document>
    <xsl:for-each select="//communication/email[emailaddress] |
                          //communication2[emailaddress2]">
     <xsl:sort select="."/>
     <xsl:value-of select="."/>
     <xsl:if test="position() != last()">,
     </xsl:if>
    </xsl:for-each>
   </document>
  </xsl:template>
</xsl:stylesheet>

T:\ftemp>saxon bert.xml bert.xsl
<?xml version="1.0" encoding="utf-8"?>
<document>
     e-mail@xxxxxxx(1)
    ,

     e-mail@xxxxxx(1)
    ,

    e-mail@xxxxxxx(2)
   ,

    e-mail@xxxxxx(2)
   </document>
T:\ftemp>

--
Public courses: upcoming world tour of hands-on XSL training events
Each week:    Monday-Wednesday: XSLT/XPath; Thursday-Friday: XSL-FO
Washington, DC: 2004-03-15            San Francisco, CA: 2004-03-22
Hong Kong: 2004-05-17    Germany: 2004-05-24    England: 2004-06-07
World-wide on-site corporate, government & user group XML training!

G. Ken Holman                  mailto:gkholman@xxxxxxxxxxxxxxxxxxxx
Crane Softwrights Ltd.           http://www.CraneSoftwrights.com/s/
Box 266, Kars, Ontario CANADA K0A-2E0     +1(613)489-0999 (F:-0995)
Male Breast Cancer Awareness   http://www.CraneSoftwrights.com/s/bc


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



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



Current Thread
Keywords