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

RE: How to convert flat data to hierarchical data

Subject: RE: How to convert flat data to hierarchical data
From: "Andreas L. Delmelle" <a_l.delmelle@xxxxxxxxxx>
Date: Mon, 26 Apr 2004 19:24:20 +0200
xsl convert flat
> -----Original Message-----
> From: Hansen, John [mailto:John.Hansen@xxxxxxxxxx]
> 
> Is there a simple stylesheet that will transform the flat data shown
> below into the hierarchical form that is at the end of this email?  I

Hi,

Depends on what you call simple, doesn't it? I'd suggest something like:

<xsl:stylesheet ...>

<xsl:key name="by-parent" match="EmployeeGroup"
         use="Parent/@SK" />

<xsl:template match="/">
  <xsl:apply-templates select="EmployeeGroup[not(Parent/@SK)]" />
</xsl:template>

<xsl:template match="EmployeeGroup">
  <xsl:copy>
    <xsl:copy-of select="@*" />
    <xsl:copy-of select="*[not(name()='Parent')]" />
    <xsl:apply-templates select="key('by-parent',@SK)" />
  </xsl:copy>
</xsl:template>

</xsl:stylesheet>

Beware though: untested.


HTH!

Cheers,

Andreas

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.