您可以使用translate()函数:
应用于身份转换以将这些字符替换为,
:
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">
<xsl:template match="@*| node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
<xsl:template match="text()">
<xsl:value-of select="translate(., '&/', ',,')"/>
</xsl:template>
</xsl:stylesheet>
使用 XSLT/XPath 2.0,您可以使用replace()函数,它为查找/替换操作和前导/尾随空格的规范化等提供了更强大的功能。
<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="2.0">
<xsl:template match="@*| node()">
<xsl:copy>
<xsl:apply-templates select="@*|node()"/>
</xsl:copy>
</xsl:template>
<xsl:template match="text()">
<xsl:value-of select="replace(., '\s?(&|/)\s?', ', ')"/>
</xsl:template>
</xsl:stylesheet>