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

RE: Transforming node to different location in output

Subject: RE: Transforming node to different location in output
From: Kay Michael <Michael.Kay@xxxxxxx>
Date: Wed, 19 Apr 2000 18:14:18 +0100
RE: Transforming node to different location in output
> Can anyone help me figure out how to transform one
> node to a different location in the output

> Example:
> Input:
> <?xml version="1.0"?>
> <document>
>   <tag1>
>     <element1>data</element1>
>     <element2>data</element2>
>   </tag1>
>   <tag2>
>     <element1>data</element1>
>     <element2>data</element2>
>   </tag2>
>   <tag3>
>     <element1>data</element1>
>     <element2>data</element2>
>   </tag3>
> </document>
> 
> Output:
> <?xml
> 
> The output that I would like to get might be something
> like this:
> 
> <?xml version="1.0" encoding="utf-8"?>
> <document>
>    <tag2>
>       <element1>data</element1>
>       <element2>data</element2>
>    </tag2>
>    <tag3>
>       <element1>data</element1>
>       <element2>data</element2>
>       <newtag1>
>          <newelement1>data</newelement1>
>          <newelement2>data</newelement2>
>       </newtag1>
>    </tag3>
> </document>
>
Hard to generalise from one example. You could achieve this particular
transformation by:
 
<xsl:template match="document">
<xsl:copy>
  <xsl:copy-of select="tag2"/>
  <xsl:copy select="tag3">
    <xsl:copy-of select="tag3/*"/>
    <xsl:apply-templates select="tag1"/>
  </xsl:copy>
</xsl:copy>
</xsl:template>

<xsl:template match="tag1">
<newtag1><xsl:apply-templates/></newtag1>
</xsl:template>

<xsl:template match="element1">
<newelement1><xsl:apply-templates/></newelement1>
</xsl:template>

general principle: xsl:copy-of for a deep copy, xsl:copy for a shallow copy,
xsl:apply-templates for a transformation.

Mike Kay


 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.