How to always write Windows style newlines to a file?

W

Wes Gamble

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?

Thanks,
Wes
 
W

Wes Gamble

I've done this in the past - is this the best way to do it?

#Add a \r character on non-Windows platforms
upload_file << "#{target.dump_output}"
upload_file << "\r" unless Config::CONFIG['target_os'] =~ /win/
upload_file << "\n"
 
D

Daniel Berger

Wes said:
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".

Regards,

Dan
 
R

Robert Klemme

The line endings shouldn't matter. I write csv files on Linux systems
all the time, and open them with Excel without issue.


If you still really want to do this, you can set $/ (record separator)
to "\r\n".

You sure this works?

$ ruby -e '$/="\r\n"; puts "foo", "bar"' | od -c
0000000 f o o \n b a r \n
0000010

Output record separator doesn't seem to help either:

$ ruby -e '$\="\r\n"; puts "foo", "bar"' | od -c
0000000 f o o \n b a r \n
0000010

Explicit works:

$ ruby -e 'print "foo\r\n", "bar"' | od -c
0000000 f o o \r \n b a r
0000010

$ ruby -v
ruby 1.8.5 (2006-08-25) [i386-cygwin]

Hm... Is this a bug in Ruby 1.8.5 or am I missing something?

robert
 
A

Austin Ziegler

$ ruby -e 'print "foo\r\n", "bar"' | od -c
0000000 f o o \r \n b a r
0000010

$ ruby -v
ruby 1.8.5 (2006-08-25) [i386-cygwin]

Hm... Is this a bug in Ruby 1.8.5 or am I missing something?

Yeah. You're using the disaster known as cygwin.

-austin
 
R

Robert Klemme

$ ruby -e 'print "foo\r\n", "bar"' | od -c
0000000 f o o \r \n b a r
0000010

$ ruby -v
ruby 1.8.5 (2006-08-25) [i386-cygwin]

Hm... Is this a bug in Ruby 1.8.5 or am I missing something?

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]

Now, is Debian Linux disastrous, too? :)

Kind regards

robert
 
X

Xavier Noria

If you still really want to do this, you can set $/ (record separator)

That would be $\, the _output_ record separator.
to "\r\n".

But that's a valid solution only if you set binmode on the
filehandle, otherwise you'll get a double \r on Windows.

-- fxn
 
W

Wes Gamble

So if I open the file using "b" I can write the bytes as I intend using
<<, is that correct?

That's simple and makes sense - how novel ;).

Thanks,
Wes
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

Forum statistics

Threads
473,769
Messages
2,569,576
Members
45,054
Latest member
LucyCarper

Latest Threads

Top