I don’t really know XSL but I need to fix this code, I have reduced it to make it simpler.
I am getting this error
Invalid XSLT/XPath function
on this line
<xsl:variable name="text" select="replace($text,'a','b')"/>
This is the XSL
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:inm="http://www.inmagic.com/webpublisher/query" version="1.0">
<xsl:output method="text" encoding="UTF-8" />
<xsl:preserve-space elements="*" />
<xsl:template match="text()" />
<xsl:template match="mos">
<xsl:apply-templates />
<xsl:for-each select="mosObj">
'Notes or subject'
<xsl:call-template
name="rem-html">
<xsl:with-param name="text" select="SBS_ABSTRACT" />
</xsl:call-template>
</xsl:for-each>
</xsl:template>
<xsl:template name="rem-html">
<xsl:param name="text" />
<xsl:variable name="text" select="replace($text, 'a', 'b')" />
</xsl:template>
</xsl:stylesheet>
Can anyone tell me what’s wrong with it?
replaceisn’t available for XSLT 1.0.Codesling has a template for string-replace you can use as a substitute for the function:
invoked as:
On the other hand, if you literally only need to replace one character with another, you can call
translatewhich has a similar signature. Something like this should work fine:Also, note, in this example, I changed the variable name to "newtext", in XSLT variables are immutable, so you can’t do the equivalent of
$foo = $foolike you had in your original code.