On CSV
July 25th, 2011CSV, or comma-separated values, is a non-standard which due to its apparent simplicity people think is a good data interchange format. It’s not. In this blog post I will attempt to tell you more than you ever wanted to know about CSV.
tl;dr: CSV is a a HORRIBLE ‘format’ and should NEVER be used. You will regret it. If you need a simple data exchange format that is easy to for lay people to read and write and widely supported by programming languages, use JSON (my first choice) or something like YAML.
Read more »