Never been to DZone Snippets before?

Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

About this user

Tim Morgan http://timmorgan.org

« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS 

Make a list into a line suitable for a CSV file in Ruby

Formats a list/array as a string suitable for one row of a CSV file

def comma_separate(items)
  items.map! do |item|
    if item.is_a?(String) and item =~ /[",]/
      '"' + item.gsub(/"/, '""') + '"'
    else
      item
    end
  end
  items.join(',')
end
« Newer Snippets
Older Snippets »
Showing 1-1 of 1 total  RSS