I need to write a CSV file and I know that I always want Windows style
newlines on it (for import into Excel).
I want to make sure that every line is terminated with “\r\n” (CRLF)
regardless of platform. How do I write the “\n” when the code executes
on Windows without ending up with \r\r\n at the end of every line?
I’ve tried using <<, write, and syswrite against my IO (file) object.
How do I just write the CR and LF characters to my file?
I need to write a CSV file and I know that I always want Windows style
newlines on it (for import into Excel).
The line endings shouldn’t matter. I write csv files on Linux systems
all the time, and open them with Excel without issue.
I want to make sure that every line is terminated with “\r\n” (CRLF)
regardless of platform. How do I write the “\n” when the code executes
on Windows without ending up with \r\r\n at the end of every line?
If you still really want to do this, you can set $/ (record separator)
to “\r\n”.
Yeah. You’re using the disaster known as cygwin.
So far it has served me very well. The fact that cygwin not generally
prevents the output of “\r\n” makes me believe there has to be something
in the implementation of Ruby. Maybe you can elaborate further in what
disastrous ways cygwin interferes here (other than running on a Windows
box). I also noticed this - on a Linux box:
PDBRK_MYSQL:~# ruby -e ‘$="\r\n"; puts “foo”, “bar”’ | od -c
0000000 f o o \n b a r \n
0000010
PDBRK_MYSQL:~# uname -a
Linux PDBRK_MYSQL 2.6.8-2-386 #1 Tue Aug 16 12:46:35 UTC 2005 i686
GNU/Linux
PDBRK_MYSQL:~# ruby -v
ruby 1.8.2 (2005-04-11) [i386-linux]