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

RE: create element

Subject: RE: create element
From: Jarno.Elovirta@xxxxxxxxx
Date: Thu, 2 May 2002 11:21:21 +0300
create element name xsl
Heppa,

> In my input xml file, I have this structure :
> <table>
>    <row>
> 	<cell>
> 	  Name
> 	</cell>
> 	<cell>
> 	  Hassan
> 	</cell>
>    </row>			
>    <row>
> 	<cell>
> 	  Age
> 	</cell>
> 	<cell>
> 	  23 year
> 	</cell>
>    </row>
>    <row>
> 	<cell>
> 	  City
> 	</cell>
> 	<cell>
> 	  Bordeaux
> 	</cell>
>    </row>
>    <row>
> 	<cell>
> 	  Country
> 	</cell>
> 	<cell>
> 	  France
> 	</cell>
>    </row>
> </table>
> 
> I want to have an output file with this structure:
> 
> <rule name="Name" value="Hassan">
>     <Age>
>       23 year
>     </Age>
>     <City>
> 	Bordeaux
>     </City>
>     <Country>
> 	France
>     </Country>
> </rule>


E.g.

<xsl:output indent="yes"/>

<xsl:template match="table">
  <rule name="{normalize-space(row[1]/cell[1])}" value="{normalize-space(row[1]/cell[2])}">
    <xsl:for-each select="row[position() != 1]">
      <xsl:element name="{normalize-space(cell[1])}">
        <xsl:value-of select="normalize-space(cell[2])" />
      </xsl:element>      
    </xsl:for-each>
  </rule>  
</xsl:template>

The indentation isn't exactly the same, but shouldnt' be too hard to adjust manually.

Cheers,

Santtu

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


Current Thread
  • create element
    • CHAOUI Hassan - Thu, 2 May 2002 03:43:42 -0400 (EDT)
      • <Possible follow-ups>
      • Jarno . Elovirta - Thu, 2 May 2002 04:15:26 -0400 (EDT) <=

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.