我在下面创建了这个XSLT模板,用于解析为HTML页面转换的文本块。此模板在多个位置使用,但是,它无法成功转换我一直指定的字符。一个例子如下:
我希望“两个”有“帮助”,我继续看“四”,但我发现的只是“空虚”。
结果是: 我希望“两个”有“帮助”,我继续寻找“更多”,但我发现的只是“空虚”。
有什么想法吗?
<xsl:template name="PreserveQuotations">
<xsl:param name="text"/>
<xsl:choose>
<xsl:when test="contains($text,'“')">
<xsl:value-of select="substring-before($text,'“')"/>
<xsl:text>"</xsl:text>
<xsl:call-template name="PreserveQuotations">
<xsl:with-param name="text">
<xsl:value-of select="substring-after($text,'“')"/>
</xsl:with-param>
</xsl:call-template>
</xsl:when>
<xsl:when test="contains($text,'”')">
<xsl:value-of select="substring-before($text,'”')"/>
<xsl:text>"</xsl:text>
<xsl:call-template name="PreserveQuotations">
<xsl:with-param name="text">
<xsl:value-of select="substring-after($text,'”')"/>
</xsl:with-param>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$text"/>
</xsl:otherwise>
</xsl:choose>
</xsl:template>
答案 0 :(得分:0)
如果您考虑表格
的字符串的情况,问题应该变得清晰aaa ” bbb “ ccc
有两个明显的解决方案:(1)检查字符串是否包含两个特殊字符的情况,然后处理发生的第一个字符串;或者(2)对每个字符进行一次字符串传递。 (将模板拆分为两个模板或指定要在参数中查找的字符。)