Subject: RE: MSXML -> XSLT -> and bloody \r\r\n and where do they co me from? a nd what can I do about it!
From: Pieter Reint Siegers Kort <pieter.siegers@xxxxxxxxxxx>
Date: Mon, 13 Dec 2004 11:16:24 -0600
|
He's using MSXML, see subject; hence, OS is Windows.
What we we don't know is, which version.
Cheers,
<prs/>
-----Original Message-----
From: David Carlisle [mailto:davidc@xxxxxxxxx]
Sent: Monday, December 13, 2004 11:09 AM
To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
Subject: Re: MSXML -> XSLT -> and bloody \r\r\n and where do they come
from? a nd what can I do about it!
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
________________________________________________________________________
|