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

Re: Identity Transform with special grouping

Subject: Re: Identity Transform with special grouping
From: Martin Honnen <Martin.Honnen@xxxxxx>
Date: Sat, 05 Feb 2011 09:55:43 +0100
Re:  Identity Transform with special grouping
Senthilukvelaan wrote:


My xslt looks for the expected out


<?xml version="1.0" encoding="utf-8"?> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> <xsl:output method="xml" omit-xml-declaration="yes" indent="yes" encoding="UTF-8" />

<!--NO change here is expected, because node names are dynamic in nature-->
<xsl:template match="node() | @*">
<xsl:copy>
<xsl:apply-templates select="node()| @*"/>
</xsl:copy>
</xsl:template>

  <xsl:template match="header/section[position()&lt; 2]">
      <xsl:apply-templates select="@*|node()"/>
</xsl:template>

<xsl:template match="section">
</xsl:template>
</xsl:stylesheet>

My expected output is
<event>
<note>
</note>
<note>
</note>
<header>
<sections>
<section>
<para1>test</para1>
<para1>test</para1>
</section>
</sections>
</header>
<payload>
<elements/>
</payload>
</event>

Doesn't the stylesheet do what you want? I get the posted output, only with additional indentation and white space but that is easily fixed by adding


<xsl:strip-space elements="*"/>

in the stylesheet.

If you still have problems then please explain which XSLT processor you use and which output you get.

Or are you simply asking how to parameterize the stylesheet? If you use an XSLT 1.0 processor then you can't use a parameter or variable in a match pattern but if you move to an XSLT 2.0 processor then you can use

<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="2.0">

<xsl:param name="n" select="2"/>

<xsl:output method="xml" omit-xml-declaration="yes"  indent="yes"
encoding="UTF-8" />
<xsl:strip-space elements="*"/>

<!--NO change here is expected, because node names are dynamic in nature-->
<xsl:template match="node() | @*">
  <xsl:copy>
    <xsl:apply-templates select="node()| @*"/>
  </xsl:copy>
</xsl:template>

<xsl:template match="section"></xsl:template>

<xsl:template match="header/section[position() &lt; $n]" >
   <xsl:apply-templates select="@*|node()"/>
</xsl:template>

</xsl:stylesheet>


--


	Martin Honnen
	http://msmvps.com/blogs/martin_honnen/

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.