I need to save table to CSV file. Each cell of table could contains strings with characters like: ” , ; ‘ and new lines.
How to convert those strings to valid CSV fields that could be opened in Excel?
I need to save table to CSV file. Each cell of table could contains
Share
It should be as simple as this:
This wraps the cell text in “double quotes” and escapes “double quotes” inside the cell with double “double quotes”.