xsl-list
[Top] [All Lists]

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

2004-12-13 10:09:24

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
________________________________________________________________________

--~------------------------------------------------------------------
XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list
To unsubscribe, go to: http://lists.mulberrytech.com/xsl-list/
or e-mail: <mailto:xsl-list-unsubscribe(_at_)lists(_dot_)mulberrytech(_dot_)com>
--~--



<Prev in Thread] Current Thread [Next in Thread>