replacing "
i want to replace " with \" ..
<xsl:variable name="varVal" select="normalize-space(.)"/>
<xsl:variable name="newVal" select="translate($varVal,'"','\"')"/>
but after replaching in output html it is comming blank means " are place by blank..from xsl how can i get \" in outout html??
|