question 1 :
I know that c++ could write/ read excel file by changing it into csv format. however, if the content of a cell has a "," inside, then we may have problem when we are reading it as the content may be split into two parts. So how to tackle this problem?
question 2:
Beisdes, is it possible for c++ to read or write excel file directly without changing it into csv?
question 3:
If the content of a CSV file ( which is used for reading) has some chinese characters, then when I write the content back to another new CSV file, some of the characters could not be displayed. How could I eliminate this problem?
question 4:
I have written a c++ program which will read and write csv file.
Is it possible to make an interface for choosing the file to open or write without changing the code inside?
Thank you very much !!!!!!!!!!!!!!!!!!!!!