The "
" combination in XSLT translates to the CrLf combination in Windows based OS's.
I'm not sure how you would handle this problem in your souce xml. One way might be to replace all instances of "
" in the relevant element with the full CrLf string. That should result in a proper line break in your output. On Jul 28, 12:05 am, prats mini <[email protected]> wrote: > 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.
