Hi All, when i am trying to convert the xml using xsl, i have few characters like "
" inside the xml text and i want to get them converted to a new line. But these are getting converted to a <space>. Please let me know can i do that.
sample code: xml: <xml:Request> <xml:RequestName>sravani 
 this is an example</xml:RequestName> </xml:Request> xsl code: <xsl:if test="xml:Request"> <xsl:value-of select="xml:requestName"/> </xsl:if> Any kind of help is really appreciated.
