I have the following xml:
<item>value 1,value 2,value3</item>
I would now like to achieve the following via an output via xslt:
<item>value 1XXvalue 2XXvalue3</item>
I have done it with
<xsl:value-of select="translate(item,',','XX')"/>
but there I only get
<item>value 1Xvalue 2Xvalue3</item>