<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: String Concatenation Tricks</title>
	<atom:link href="http://www.barneyb.com/barneyblog/2004/12/04/string-concatenation-tricks/feed/" rel="self" type="application/rss+xml" />
	<link>https://www.barneyb.com/barneyblog/2004/12/04/string-concatenation-tricks/</link>
	<description>Thoughts, rants, and even some code from the mind of Barney Boisvert.</description>
	<lastBuildDate>Thu, 11 Sep 2014 09:58:12 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: barneyb</title>
		<link>https://www.barneyb.com/barneyblog/2004/12/04/string-concatenation-tricks/comment-page-1/#comment-29</link>
		<dc:creator>barneyb</dc:creator>
		<pubDate>Wed, 08 Dec 2004 02:34:48 +0000</pubDate>
		<guid isPermaLink="false">http://barneyb.com/barneyblog/?p=57#comment-29</guid>
		<description>The Java class will use the appropriate line endings for the platform you are running on.  Note, however, that&#039;s the server platform, not the client platform.  So if you&#039;re running Linux servers and a windows user connects, it&#039;s the Linux line ending that&#039;s used.  In general, this doesn&#039;t matter (Notepad is the only Windows program I&#039;ve run across that doesn&#039;t process Unix line endings properly), but it&#039;s something to consider.  If you do need to do cross-platform generation, then you have to use the first method, and select the appropriate line ending based on CGI variables (or whatever).
</description>
		<content:encoded><![CDATA[<p>The Java class will use the appropriate line endings for the platform you are running on.  Note, however, that's the server platform, not the client platform.  So if you're running Linux servers and a windows user connects, it's the Linux line ending that's used.  In general, this doesn't matter (Notepad is the only Windows program I've run across that doesn't process Unix line endings properly), but it's something to consider.  If you do need to do cross-platform generation, then you have to use the first method, and select the appropriate line ending based on CGI variables (or whatever).</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: stylo~</title>
		<link>https://www.barneyb.com/barneyblog/2004/12/04/string-concatenation-tricks/comment-page-1/#comment-28</link>
		<dc:creator>stylo~</dc:creator>
		<pubDate>Wed, 08 Dec 2004 01:59:43 +0000</pubDate>
		<guid isPermaLink="false">http://barneyb.com/barneyblog/?p=57#comment-28</guid>
		<description>What would we do without google? Just found it after posting:

* Windows (\r\n): #chr(13)##chr(10)#
* Unix (\n): #chr(10)#
* MacOS 9 and earlier (\r): #chr(13)#

So, are we covered on windows with the java class?</description>
		<content:encoded><![CDATA[<p>What would we do without google? Just found it after posting:</p>
<p>* Windows (\r\n): #chr(13)##chr(10)#<br />
* Unix (\n): #chr(10)#<br />
* MacOS 9 and earlier (\r): #chr(13)#</p>
<p>So, are we covered on windows with the java class?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: stylo~</title>
		<link>https://www.barneyb.com/barneyblog/2004/12/04/string-concatenation-tricks/comment-page-1/#comment-27</link>
		<dc:creator>stylo~</dc:creator>
		<pubDate>Wed, 08 Dec 2004 01:56:55 +0000</pubDate>
		<guid isPermaLink="false">http://barneyb.com/barneyblog/?p=57#comment-27</guid>
		<description>Thanks for this. But doessn&#039;t it need to be CHR(13)&amp; CHR(10)? If so... ?</description>
		<content:encoded><![CDATA[<p>Thanks for this. But doessn't it need to be CHR(13)&amp; CHR(10)? If so&#8230; ?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
