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

RE: replacing parts of a string

Subject: RE: replacing parts of a string
From: "Jonny Pony" <jonnypony666@xxxxxxxxxxx>
Date: Thu, 15 Jan 2004 16:48:01 +0000
replacing a string with xsl
Hi,

OK. Downloaded your files. Did the things you said.
Now call me dumb:
I don't know how to invoke your "template".

Let's say I have:
<hello>
<LongString>12rt,dsfg,dsfg,ewrt,wert,xcvbs,rwete,ehgfh,xxxxxasd,awersdf,dfgxvxcv</LongString>
<LongString>76rt,dsfg,dsfg,ewrt,wert,xcvbs,rwete,ehgfh,xxxxxasd,awersdf,dfgxvxcv</LongString>
<LongString>wert,ds4,dsfg,ewrt,wert,xcvbs,rwete,ehgfh,xxxxxasd,awersdf,dfgxvxcv</LongString>
<LongString>wert,d12,dsfg,ewrt,wert,xcvbs,rwete,ehgfh,xxxxxasd,awersdf,dfgxvxcv</LongString>
</hello>

What would I "do" in my xsl to invoke your "function"?
Sorry, but I have no clue.

Thanks
jonny

From: Dimitre Novatchev <dnovatchev@xxxxxxxxx>
Reply-To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Subject: RE: replacing parts of a string Date: Thu, 15 Jan 2004 06:02:05 -0800 (PST)


> >  Is there a (string)-replace function in xsl. Couldn't find one.
>
> Other than translate(), no.
>
> >  My problem: I get something like this in xml:
> >  <LongString>wert,dsfg,dsfg,ewrt,wert,xcvbs,rwete,ehgfh,xxxxxas
> >  d,awersdf,dfgxvxcv</LongString>
> >
> >  I want to have a whitespace between the "," and the text.
>
> See the FAQ-you need to write a recursive template.

Or you will not have to write a recursive template (already written for
you) if you use the "str-map" template from FXSL.

This transformation:

<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:testmap="my:testmap"
exclude-result-prefixes="xsl testmap"
>
   <xsl:import href="str-map.xsl"/>

<xsl:output omit-xml-declaration="yes" indent="yes"/>

   <xsl:template match="LongString">
     <xsl:variable name="vTestMap"
      select="document('')/*/testmap:*[1]"/>
     <xsl:copy>
       <xsl:call-template name="str-map">
         <xsl:with-param name="pFun" select="$vTestMap"/>
         <xsl:with-param name="pStr" select="."/>
       </xsl:call-template>
     </xsl:copy>
   </xsl:template>

    <testmap:testmap/>
    <xsl:template match="testmap:*">
      <xsl:param name="arg1"/>

      <xsl:value-of select="$arg1"/>
      <xsl:if test="$arg1 = ','">
      <xsl:text> </xsl:text>
      </xsl:if>
    </xsl:template>

</xsl:stylesheet>

When applied on your source.xml:

<LongString>wert,dsfg,dsfg,ewrt,wert,xcvbs,rwete,ehgfh,xxxxxasd,awersdf,dfgxvxcv</LongString>

produces the desired output:

<LongString>wert, dsfg, dsfg, ewrt, wert, xcvbs, rwete, ehgfh, xxxxxasd,
awersdf, dfgxvxcv</LongString>


Dimitre Novatchev. FXSL developer,

http://fxsl.sourceforge.net/ -- the home of FXSL
Resume: http://fxsl.sf.net/DNovatchev/Resume/Res.html




__________________________________ Do you Yahoo!? Yahoo! Hotjobs: Enter the "Signing Bonus" Sweepstakes http://hotjobs.sweepstakes.yahoo.com/signingbonus

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


_________________________________________________________________
NEU: Polyphone Klingeltöne und farbige Logos für Ihr Handy! http://polyphonetoene.handy.msn.de Jetzt Handy aufpeppen!



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.