Re: [xsl] MSXML -> XSLT -> and bloody \r\r\n and where do they come from? a nd what can I do about it!

Subject: Re: [xsl] MSXML -> XSLT -> and bloody \r\r\n and where do they come from? a nd what can I do about it!
From: David Carlisle <davidc@xxxxxxxxx>
Date: Mon, 13 Dec 2004 17:09:24 GMT
for text output, line endings may (depending on the system) come out as
they are specified, or (as in xml output) with #10 being linearised as
the normal line ending on your system.

In the latter case I'd expect
<xsl:value-of select="IndexValue"/>,<xsl:value-of
select="Action"/><xsl:text>& #13;& #10;</xsl:text>

tp oroduce what you say you got: #13 (from the #13) and #13#10 (from the 
#10

but in that case I'd expect this


<xsl:value-of select="IndexValue"/>,<xsl:value-of
select="Action"/><xsl:text>& #10;</xsl:text>
 

to produce what you want.


In the former case I'd expect

<xsl:value-of select="IndexValue"/>,<xsl:value-of
select="Action"/><xsl:text>& #13;& #10;</xsl:text>

to produce what you want.

what processor are you using, on what OS?

David

________________________________________________________________________
This e-mail has been scanned for all viruses by Star. The
service is powered by MessageLabs. For more information on a proactive
anti-virus service working around the clock, around the globe, visit:
http://www.star.net.uk
________________________________________________________________________

Current Thread