Created
June 6, 2014 04:26
-
-
Save christiangenco/8acebde2025bf0891987 to your computer and use it in GitHub Desktop.
Ruby hash array to CSV
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Array | |
def to_csv(csv_filename="hash.csv") | |
require 'csv' | |
CSV.open(csv_filename, "wb") do |csv| | |
csv << first.keys # adds the attributes name on the first line | |
self.each do |hash| | |
csv << hash.values | |
end | |
end | |
end | |
end | |
# ex: [{a: 1, b: 2}, {a: 3, b: 4}].to_csv("hash.csv") |
If the hashes aren't uniform then you will end up with data in the wrong columns. You should use values_at instead:
def to_csv(csv_filename = "hash.csv")
require "csv"
CSV.open(csv_filename, "wb") do |csv|
keys = first.keys
# header_row
csv << keys
self.each do |hash|
csv << hash.values_at(*keys)
end
end
end
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hey thanks, this is a super useful little script. I used it to convert an array of hashes into a csv file.
For instance, this:
Into this: