Skip to content

Instantly share code, notes, and snippets.

@microwaves
Created November 18, 2013 23:30
Show Gist options
  • Select an option

  • Save microwaves/aca0481e376b757ec051 to your computer and use it in GitHub Desktop.

Select an option

Save microwaves/aca0481e376b757ec051 to your computer and use it in GitHub Desktop.
def normalize_csv(from, to)
from.rewind
File.open(from.path, 'r:windows-1251:utf-8').each_line do |line|
if line.count('"') > 0
line.gsub!(/,([^,]+"[^,]+),/) do
%(,"#{Regexp.last_match[1].tr('"', '')}",)
end
end
to.puts(line)
end
to.rewind
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment