Skip to content

Instantly share code, notes, and snippets.

@giginet
Created November 3, 2016 09:25
Show Gist options
  • Select an option

  • Save giginet/d1d5a15dcecd7030aea3e63d77d55c40 to your computer and use it in GitHub Desktop.

Select an option

Save giginet/d1d5a15dcecd7030aea3e63d77d55c40 to your computer and use it in GitHub Desktop.
File.open('members.csv', 'r') do |file|
file.each_line do |line|
name, email, _, _ = line.split(',')
puts "#{name} <#{email}>"
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment