Non conosco davvero XSL ma ho bisogno di correggere questo codice, l'ho ridotto per renderlo più semplice.
Ricevo questo errore
Funzione XSLT / XPath non valida
su questa linea
<xsl:variable name="text" select="replace($text,'a','b')"/>
Questo è l'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>
Qualcuno può dirmi cosa c'è che non va?
replace()
funzione è disponibile da XPath 2.0 (e quindi XSLT 2.0) in poi e supporta le sostituzioni di espressioni regolari.