传递与传播作为调用XSLT模板的参数

时间:2013-09-19 18:03:02

标签: xml xslt-1.0

被卡住了。我想替换&在我的字符串中使用' spacer '。这是在做什么

<xsl:variable name="WithoutAmpersand">
  <xsl:call-template name="replaceCharsInString">
    <xsl:with-param name="stringIn" 
        select="$serviceNameWithoutCloseParanthesis"/>
    <xsl:with-param name="charsIn" select="'&amp;'"/>
    <xsl:with-param name="charsOut" select="'_spacer_'"/>
  </xsl:call-template>
</xsl:variable>

得到'实体名称必须紧跟'&amp;'在实体引用'异常中。 请帮忙解决这个问题。

0 个答案:

没有答案