Issue in escaping comma from string in transforms
I have a problem in csv tranformation using xslt from xml.
The problem is the city string is having a comma inside like "huntington,ny" and when generated into a csv, its splitted into two cells and got messed up.
If anyone could let me know how to escape this comma from city and fit into a single cell of the csv file.
<xsl:value-of select="Info/city"/>
<xsl:value-of select="','"/>
Thanks in advance.
|