Re: [xsl] Translation of values inside variables XSLT 1.1

Subject: Re: [xsl] Translation of values inside variables XSLT 1.1
From: Kevin <app.eng.kev@xxxxxxxxx>
Date: Mon, 13 Jun 2005 08:06:49 -0500
It might be a bit more difficult then this, but make sure that you
qualify your variable (parameters also) with a $. It is possible that
you might also need the curly brackets around the variable name.

<xsl:variabe name="dest">
       <xsl:copy-of select="translate($source, 'V1', 'V2')"/>
</xsl:variable>

OR

<xsl:variabe name="dest">
       <xsl:copy-of select="translate({$source}, 'V1', 'V2')"/>
</xsl:variable>

HTH

On 6/13/05, news@xxxxxxxxxxx <news@xxxxxxxxxxx> wrote:
> Hello List,
>
> I've a variable and want to change all values inside this from one specefic
> value to another one.
> I tried something like this
>
> <xsl:variabe name="dest">
>        <xsl:copy-of select="translate(source, 'V1', 'V2')"/>
> </xsl:variable>
>
> but it did'nt worked out.
>
> Does someone know how I can change Values inside a variable?
> Thanks for any Help!!
>
> Jan

Current Thread