Y
Hacker News
new
|
ask
|
show
|
jobs
by
nobotty
4348 days ago
How do you have CSV data with a comma within a field?
2 comments
accatyyc
4348 days ago
You use another delimiter if you need commas. CSV isn't comma only (contrary to what the name implies), you could use '!' or anything else.
link
mholt
4348 days ago
Enclose the field in quotes: a,"b,b",c
link