Let's say i have the the following:
var csv = [['name', 'comment'], ['foo', 'hello world, bar']];
When I try creating a csv string and opening that csv string in Excel, it becomes something like this
name | comment |
-------------------------
foo | hello world | bar
How would I get around this?