Closed rodogu closed 6 years ago
I noticed that if the value has something like"cheese \\", it gets convert as "cheese "" in the csv, which breaks the formatting.
"cheese \\"
"cheese ""
For example:
{ "cheese":"gouda", "bacon":"canadian\\" }
will generate this
"bacon","cheese" "canadian"","gouda"
The latest version of json2csv prints:
"cheese","bacon" "gouda","canadian\"
as expected. So this can be closed.
I noticed that if the value has something like
"cheese \\"
, it gets convert as"cheese ""
in the csv, which breaks the formatting.For example:
will generate this