xsl-list
[Top] [All Lists]

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

2004-12-13 10:16:24
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(_at_)nag(_dot_)co(_dot_)uk] 
Sent: Monday, December 13, 2004 11:09 AM
To: xsl-list(_at_)lists(_dot_)mulberrytech(_dot_)com
Subject: Re: [xsl] 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
________________________________________________________________________

--~------------------------------------------------------------------
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>
--~--

--~------------------------------------------------------------------
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>