#!/usr/bin/env ruby

require 'csv'

print(CSV.parse('2009,2,3,8,0,,30.1,,'))
puts
print(CSV.parse('2009 2 3 8 0  30.1  ', col_sep: ' '))
puts
