我正在尝试翻译以下内容(单引号到撇号):
输入:Toulouse'wer
输出:图卢兹维尔
我尝试使用以下 2 个命令:
<xsl:variable name="apos" select='"'"'/>
<xsl:variable name="rsquo">'</xsl:variable>
translate(text(),$apos,$rsquo)
该命令仍然给出单引号(')作为输出。
<xsl:variable name="apos" select='"'"'/>
<xsl:variable name="rsquo" select='"’"'/>
在这里,在此命令中,我无法在 xslt 中声明第二个变量(rsquo)。
请指教。