I have string "my string"
taken from excel value, I used GemBox.Spreadsheet library. But the result I have """my string"""
. How to get back my real string value as "my string
Thanks
I have string "my string"
taken from excel value, I used GemBox.Spreadsheet library. But the result I have """my string"""
. How to get back my real string value as "my string
Thanks
Use the hex escape \x22
such as:
Console.WriteLine ("\x22Literally\x22");
Outputs "Litterally"
okay I just go to GemBox Convert I try upload my excel file, then convert into csv file, and the result is same as my convert file. So the problem is not coming from my script but in GemBox.Spreadsheet library. Thank you for your participate guys!