被卡住了。我想替换&在我的字符串中使用' spacer '。这是在做什么
<xsl:variable name="WithoutAmpersand">
<xsl:call-template name="replaceCharsInString">
<xsl:with-param name="stringIn"
select="$serviceNameWithoutCloseParanthesis"/>
<xsl:with-param name="charsIn" select="'&'"/>
<xsl:with-param name="charsOut" select="'_spacer_'"/>
</xsl:call-template>
</xsl:variable>
得到'实体名称必须紧跟'&amp;'在实体引用'异常中。 请帮忙解决这个问题。