我在 xsl 中有字符串“[test]”。我需要删除 xsl 中的这个括号。我怎样才能在 XSL 中实现这一点。请帮忙。
我知道这可以做到,但我怎样才能用下面的代码删除'[',
<xsl:call-template name="string-replace-all">
<xsl:with-param name="text" select="$string" />
<xsl:with-param name="replace" select="$replace" />
<xsl:with-param name="by" select="$by" />
</xsl:call-template>
请帮忙删除'['和']'