Skip to content

Instantly share code, notes, and snippets.

@microwaves
Created November 19, 2013 00:10
Show Gist options
  • Select an option

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

Select an option

Save microwaves/b7ef9c23b67cd67a016c to your computer and use it in GitHub Desktop.
def normalize_csv(from, to)
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