|
|
|
|
|
by zarzavat
682 days ago
|
|
Just use TSV. Commas are a terrible delimiter because many human strings have commas in them. This means that CSV needs quoting of fields and nobody can agree on how exactly that should work. TSV doesn’t have this problem. It can represent any string that doesn’t have either a tab or a newline, which is many more than CSV can. |
|