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

Re: Re-arranging an XML file

Subject: Re: Re-arranging an XML file
From: David Carlisle <davidc@xxxxxxxxx>
Date: Tue, 13 Jan 2009 13:46:46 GMT
Re:  Re-arranging an XML file
Thanks for posting a clear example, that always helps. In future it also
helps to say if you want xslt 2 or xslt 1, in this case it wouldn't make
much difference, but in other cases it can make a lot....

Basically you want to set up a key to handle the association
of artists and titles.

David


<xsl:stylesheet  version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
 
<xsl:output indent="yes"/>
<xsl:strip-space elements="*"/>

<xsl:template match="Catalog">
 <Catalog>
 <xsl:apply-templates select="cds/cd"/>
 </Catalog>
</xsl:template>

<xsl:template match="cd">
 <cd>
  <xsl:copy-of select="title"/>
  <artist><xsl:value-of select="key('artist',number)/name"/></artist>
 </cd>
</xsl:template>

<xsl:key name="artist" match="artist" use="number"/>

</xsl:stylesheet>



produces


$ saxon cata.xml cata.xsl
<?xml version="1.0" encoding="utf-8"?>
<Catalog>
   <cd>
      <title>Empire Burlesque</title>
      <artist>Bob Dylan</artist>
   </cd>
   <cd>
      <title>Hide Your Heart</title>
      <artist>Bonnie Tyler</artist>
   </cd>
</Catalog>




________________________________________________________________________
The Numerical Algorithms Group Ltd is a company registered in England
and Wales with company number 1249803. The registered office is:
Wilkinson House, Jordan Hill Road, Oxford OX2 8DR, United Kingdom.

This e-mail has been scanned for all viruses by Star. The service is
powered by MessageLabs. 
________________________________________________________________________

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-2011 All Rights Reserved.