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

Re: Comparing with a variable position

Subject: Re: Comparing with a variable position
From: Joerg Heinicke <joerg.heinicke@xxxxxx>
Date: Thu, 10 Oct 2002 04:41:05 +0200
Re:  Comparing with a variable position
<xsl:template match="node()|@*">
  <xsl:copy>
    <xsl:apply-templates select="node()|@*"/>
  </xsl:copy>
</xsl:template>

<xsl:template match="container/text()">
  <sub-container>
    <xsl:value-of select="."/>
  </sub-container>
</xsl:template>

<xsl:template match="separator"/>

If "thus several node are possible" instead of text "mixed content" means that there can be written any element or nodes in general, you have to use a grouping method, which groups the nodes in <container/> by their preceding or following sibling separator. There are a few examples in the archives, I would search for "adding hierarchy" or "structure".

Regards,

Joerg

Louis Meigret wrote:
I would like to convert some legacy data of this format :

<container>
mixed content1 (thus several nodes are possible)
<separator/>
mixed content2
<separator/>
mixed content3
</container>

into

<container>
<sub-container>
 mixed content1
</subcontainer>
<sub-container>
 mixed content2
</subcontainer>
<sub-container>
 mixed content2
</subcontainer>
</container>

I really need an answer.

Thanks a lot


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.