我尝试使用XSLT 1.0版将XML文件转换为Json格式,我就是在XSL上使用Replace方法进行潜在替换次数的情况。这会产生StackOverFlowException。
Replace方法是递归调用的,所以我遇到了这个问题。有没有解决方案可以解决这个问题?
<xsl:template name="replace-string">
<xsl:param name="text"/>
<xsl:param name="replace"/>
<xsl:param name="with"/>
<xsl:choose>
<xsl:when test="contains($text,$replace)">
<xsl:value-of select="substring-before($text,$replace)"/>
<xsl:value-of select="$with"/>
<xsl:call-template name="replace-string">
<xsl:with-param name="text" select="substring-after($text,$replace)"/>
<xsl:with-param name="replace" select="$replace"/>
<xsl:with-param name="with" select="$with"/>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$text"/>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
答案 0 :(得分:1)
当您使用libxslt时,您可以使用EXSLT str:replace
函数而不是递归模板,即
<xsl:stylesheet
version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:str="http://exslt.org/strings"
exclude-result-prefixes="str">
<xsl:template match="@* | node()">
<xsl:copy>
<xsl:apply-templates select="@* | node()"/>
</xsl:copy>
</xsl:template>
<xsl:template match="text()">
<xsl:value-of select="str:replace(., '"', '\"')"/>
</xsl:template>
</xsl:stylesheet>
将<data>This is a text with "quoted" parts</data>
转换为<data>This is a text with \"quoted\" parts</data>
。
作为替代方案,xsltproc
,使用libxslt的命令行工具,如果您需要更多递归深度,则可能需要增加/更改设置--maxdepth val : increase the maximum depth (default 3000)
。