我的字符串"my string"
取自 excel 值,我使用了 GemBox.Spreadsheet 库。但结果我有"""my string"""
。如何取回我的真实字符串值"my string
谢谢
我的字符串"my string"
取自 excel 值,我使用了 GemBox.Spreadsheet 库。但结果我有"""my string"""
。如何取回我的真实字符串值"my string
谢谢
使用十六进制转义\x22
,例如:
Console.WriteLine ("\x22Literally\x22");
输出"Litterally"
好吧,我只是去GemBox Convert我尝试上传我的 excel 文件,然后转换为 csv 文件,结果与我的转换文件相同。所以问题不是来自我的脚本,而是来自 GemBox.Spreadsheet 库。感谢小伙伴们的参与!