Subject: character replacement
From: Sven Waibel <sven.waibel@xxxxxxxx>
Date: Fri, 07 Jan 2005 16:42:30 +0100
|
Hello,
i want to replace in my xml file all occurrences of $ with € because it should be display in my pdf in the right way.
I tried it with
<xsl:template match="@*|*">
<xsl:value-of select="translate(.,'$','€')"/>
</xsl:template>
or
<xsl:template match="@*|*">
<xsl:value-of select="replace(.,'$','€')"/>
</xsl:template>
but the function replace is not recognized
Does anybody know how to get this working?
thanks and best regards
Sven
|