Skip to content

Instantly share code, notes, and snippets.

@sh4869
Created December 20, 2014 15:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sh4869/66f8b04b85d417432fda to your computer and use it in GitHub Desktop.
Save sh4869/66f8b04b85d417432fda to your computer and use it in GitHub Desktop.
tweets.csvを扱うサンプル
require 'csv'
text = ""
CSV.foreach("tweets.csv") do |tweets|
text += tweets[5] + "|"
end
puts text
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment