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

RE: Grouping and transforming XML elements

Subject: RE: Grouping and transforming XML elements
From: Jarno.Elovirta@xxxxxxxxx
Date: Tue, 10 Jun 2003 11:11:55 +0300
xml to rtf with grouping
Hi,

> type(1) subtype(2): A, B, C. type(2) subtype(3): ZZ, WW. type(3): JJ.
> type(1) subtype(2): AA, BB.
> 
> That is, each <stuff> is to be on a line of its own. Some 
> sample code would 
> be fantastic.

  <xsl:output method="text"/>
  <xsl:template match="/">
    <xsl:for-each select="doc/stuff">
      <xsl:if test="not(position() = 1)">
        <xsl:text>&#xA;</xsl:text>
      </xsl:if>
      <xsl:for-each select="*[not(@type = preceding-sibling::*[1]/@type)]">
        <xsl:text/>type(<xsl:value-of select="@type"/>) <xsl:text/>
        <xsl:for-each select="../*[@type = current()/@type and not(@subtype = preceding-sibling::*[1]/@subtype)]">
          <xsl:choose>
            <xsl:when test="@subtype">
              <xsl:text/>subtype(<xsl:value-of select="@subtype"/>): <xsl:text/>
              <xsl:for-each select="../*[@type = current()/@type and @subtype = current()/@subtype]">
                <xsl:if test="not(position() = 1)">, </xsl:if>
                <xsl:value-of select="."/>
              </xsl:for-each>
              <xsl:text>. </xsl:text>
            </xsl:when>
            <xsl:otherwise>
              <xsl:for-each select="../*[@type = current()/@type]">
                <xsl:if test="not(position() = 1)">, </xsl:if>
                <xsl:value-of select="."/>
              </xsl:for-each>
              <xsl:text>. </xsl:text>
            </xsl:otherwise>
          </xsl:choose>
        </xsl:for-each>
      </xsl:for-each>
    </xsl:for-each>
  </xsl:template>

Use keys if you need more speed.

Cheers,

Jarno - Hocico: Poltergeist

 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.