I am manually writing .csv
files using Python/Django and then attempting to open those .csv
files using Excel for Mac version 15.21.1.
I can successfully escape all of the ,
characters, but am unable to escape "
characters.
For example...
I have a bit of data...
hell"oworld
How do I escape the "
from that data? I have tried (per advice of others on SO) to use solutions such as doubling the quote like so hell""oworld
and have also tried something like hell" & CHAR(34) & oworld
to no avail. I understand that character escaping is tricky business, but could someone please throw me a bone?
Already tried these suggestions...
solution1