我有一个模板可以检测撇号或引号(“)并在文本中添加”\“之前添加。
当文本只包含撇号或引号时,它可以工作。但当它包含两者时,
第二个xsl:when
无效。
`<xsl:template name="replace-string">
<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="replace-string">
<xsl:with-param name="text"
select='substring-after($text,"'")' />
</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="replace-string">
<xsl:with-param name="text"
select="substring-after($text,'"')" />
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$text" />
</xsl:otherwise>
</xsl:choose>
</xsl:template>`
实施例:
Some'text = Some\'text;
Some"text = Some\"text;
Some"text"another text = Some\"text\"another text;
Some'text"another'text = Some\'text"another\'text.
答案 0 :(得分:0)
在针对以下XSLT运行时输入XML将解决您的问题:
<root>'Sometext'"anothertext'"</root>
XSLT代码:
<xsl:transform xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="text"/>
<xsl:variable name="Apos">'</xsl:variable>
<xsl:variable name="Quot">"</xsl:variable>
<xsl:template match="/">
<xsl:call-template name="replace-string">
<xsl:with-param name="text" select="*"/>
</xsl:call-template>
</xsl:template>
<xsl:template name="replace-string">
<xsl:param name="text"/>
<xsl:variable name="strBeforeApos" select='substring-before($text, $Apos)'/>
<xsl:variable name="strBeforeQuot" select="substring-before($text, $Quot)"/>
<xsl:variable name="char">
<xsl:choose>
<xsl:when test="contains($text, $Apos) and contains($text, $Quot)">
<xsl:choose>
<xsl:when test="string-length($strBeforeApos) < string-length($strBeforeQuot)">
<xsl:value-of select="$Apos"/>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$Quot"/>
</xsl:otherwise>
</xsl:choose>
</xsl:when>
<xsl:when test="contains($text, $Apos)">
<xsl:value-of select="$Apos"/>
</xsl:when>
<xsl:when test="contains($text, $Quot)">
<xsl:value-of select="$Quot"/>
</xsl:when>
</xsl:choose>
</xsl:variable>
<xsl:choose>
<xsl:when test="normalize-space($char) != ''">
<xsl:value-of select='substring-before($text,$char)' />
<xsl:text>\</xsl:text>
<xsl:value-of select="$char"/>
<xsl:call-template name="replace-string">
<xsl:with-param name="text"
select='substring-after($text, $char)' />
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$text" />
</xsl:otherwise>
</xsl:choose>
</xsl:template>
</xsl:transform>
答案 1 :(得分:0)
一种简单的方法是参数化模板并调用它两次,例如:
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="xml" version="1.0" encoding="UTF-8" indent="yes"/>
<xsl:template match="/">
<xsl:variable name="escape-apos">
<xsl:call-template name="escape-char">
<xsl:with-param name="text" select="input"/>
<xsl:with-param name="char">'</xsl:with-param>
</xsl:call-template>
</xsl:variable>
<output>
<xsl:call-template name="escape-char">
<xsl:with-param name="text" select="$escape-apos"/>
<xsl:with-param name="char">"</xsl:with-param>
</xsl:call-template>
</output>
</xsl:template>
<xsl:template name="escape-char">
<xsl:param name="text"/>
<xsl:param name="char"/>
<xsl:choose>
<xsl:when test="contains($text, $char)">
<xsl:value-of select="substring-before($text, $char)"/>
<xsl:value-of select="concat('\', $char)"/>
<xsl:call-template name="escape-char">
<xsl:with-param name="text" select="substring-after($text, $char)"/>
<xsl:with-param name="char" select="$char"/>
</xsl:call-template>
</xsl:when>
<xsl:otherwise>
<xsl:value-of select="$text" />
</xsl:otherwise>
</xsl:choose>
</xsl:template>
</xsl:stylesheet>