I know how to handle string with comma into csv, and string with double quote into csv,
but if a string with both comma and double quote, how to convert it ?
like:
Seminar on "Changing Myanmar: Institutions, Personalities and Expectations" 10 Feb 2012;
by default I added " " to the string, so it can convert to csv file with comma,
but if this string also contains "", then the field separate into two fields in csv.
I tried this:
"Seminar on """Changing Myanmar: Institutions, Personalities and Expectations""" 10 Feb 2012"
but it is wrong...