Thanks a lot for the reply, can you please provide me an example for the
below.

On Wed, Jul 28, 2010 at 12:08 PM, Cerebrus <[email protected]> wrote:

> The "&#xD;&#xA;" 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 "&#xA;" 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
> > "&#xA;" 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 &#xA; 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.
>

Reply via email to