Я хочу заменить один /
словом and
.
Вот что у меня сейчас:
Код:
<xsl:output omit-xml-declaration="yes" indent="yes"/>
!-- identity transform -->
<xsl:template match="node()|@*">
<xsl:copy>
xsl:apply-templates select="node()|@*"/>
</xsl:copy>
</xsl:template>
!-- exception -->
<xsl:template match="*[local-name()='Category']/@CleanName">
<xsl:attribute name="CleanName">
<xsl:value-of select="translate('Cd /dvd inlays', '/ ', 'and')" />
</xsl:attribute>
</xsl:template>
Ввод:
<Category ID="129" CleanName="Cd /dvd inlays"></Category>
Выход:
"Cdnadvdninlays"
Даёт:
"Cd /dvd inlays"
Требуется:
"cd and dvd inlays"