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

Re: Replacing the space character with another charact

Subject: Re: Replacing the space character with another character
From: Florent Georges <darkman_spam@xxxxxxxx>
Date: Mon, 14 May 2007 15:17:11 +0200 (CEST)
Re:  Replacing the space character with another charact
Mark Peters wrote:

> Input

> <indexterm>domains<indexterm>and  components</indexterm></indexterm>

> Output

>  <indexterm>
>     old[domainsand components]
>     new[domainsand&amp;components]
>   </indexterm>

> What would I have to do to retain the nested indexterm elements?

  Something as the following if I understand correctly your problem:

    <xsl:template match="@*|node()">
      <xsl:copy>
        <xsl:apply-templates select="@*|node()"/>
      </xsl:copy>
    </xsl:template>

    <xsl:template match="indexterm/text()">
      <xsl:value-of select="replace(., ' ', '*')"/>
    </xsl:template>

  Regards,

--drkm






















      _____________________________________________________________________________ 
Ne gardez plus qu'une seule adresse mail ! Copiez vos mails vers Yahoo! Mail 

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