我並不十分了解XSL,但我需要修復此代碼,我已經減少了它以使其更簡單。
我收到此錯誤XSLT字符串替換
Invalid XSLT/XPath function
在這條線
<xsl:variable name="text" select="replace($text,'a','b')"/>
這是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>
誰能告訴我有什麼錯呢?
請注意''replace()'函數可從XPath 2.0(因此XSLT 2.0)開始使用,並支持正則表達式替換。 – Abel 2015-09-24 23:55:03