Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

It's easy enough to read a CSV file into an array with Ruby but I can't find any good documentation on how to write an array into a CSV file. Can anyone tell me how to do this?

I'm using Ruby 1.9.2 if that matters.

share|improve this question
1  
The answer you have is great, but let me urge you to not use CSV. If you don't have tabs in your data, tab-delimited files are much easier to deal with because they don't involve so much freakin' quoting and escaping and such. If you must use CSV, of course, them's the breaks. – Bill Dueber Jan 28 '11 at 1:45

3 Answers

up vote 40 down vote accepted

To a file:

require 'csv'
CSV.open("myfile.csv", "w") do |csv|
  csv << ["row", "of", "CSV", "data"]
  csv << ["another", "row"]
  # ...
end

To a string:

require 'csv'
csv_string = CSV.generate do |csv|
  csv << ["row", "of", "CSV", "data"]
  csv << ["another", "row"]
  # ...
end

Here's the current documentation on CSV: http://ruby-doc.org/stdlib/libdoc/csv/rdoc/index.html

share|improve this answer
What's the "w" for? – boulder_ruby Jul 16 '12 at 0:47
@David it's the file mode. "w" means write to a file. If you don't specify this, it'll default to "rb" (read-only binary mode) and you would get an error when trying to add to your csv file. See ruby-doc.org/core-1.9.3/IO.html for a list of valid file modes in Ruby. – Dylan Markow Jul 16 '12 at 14:08
1  
Gotcha. And for future users, if you want each iteration to not overwrite the previous csv file, use the "ab" option. – boulder_ruby Jul 16 '12 at 14:38

Struggling with this myself. This is my take:

https://gist.github.com/2639448:

require 'csv'

class CSV
  def CSV.unparse array
    CSV.generate do |csv|
      array.each { |i| csv << i }
    end
  end
end

CSV.unparse [ %w(your array), %w(goes here) ]
share|improve this answer
Btw, beware of multi-dimensional arrays in pry on JRuby. [ %w(your array), %w(goes here) ] won't look pretty. github.com/pry/pry/issues/568 – Felix Rabe May 8 '12 at 21:31

To continuously add to a CSV file without having it get overwritten each time:

require 'csv'
CSV.open("myfile.csv", "ab") do |csv|
  csv << ["row", "of", "CSV", "data"]
  csv << ["another", "row"]
  # ...
end

Also note that the first row can be your 'headers', as in:

"name", "idnum", "hometown", "misc"

Personally, I prefer to add the headers manually to the csv file and then let ruby do the rest.

share|improve this answer
I pulled in a CSV file using CSV.table, did some manipulations, got rid of some columns, and now I want to spool the resulting Array of Hashes out again as CSV (really tab-delimited). How to? gist.github.com/4647196 – tamouse Jan 27 at 7:13

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.