Answers for "create a csv file in ruby"

1

ruby create CSV

CSV.open("file.csv", "a+") do |csv|
  csv << ["cow", "3","2500"]
end
Posted by: Guest on March-13-2020
0

how to write CSV file in rails

require 'csv'
file = "my_file.csv"
CSV.open( file, 'w' ) do |writer|
  @coun.each do |c|
    writer << [c.name, c.country_code, c.user_id, c.subscriber_id]
  end
end
Posted by: Guest on November-12-2021
0

save to csv ruby

CSV.open("filename.csv", "wb") do |row|
  row << ["a", "b", "c"]
end
Posted by: Guest on January-07-2021

Browse Popular Code Answers by Language