在CSV字符串中第一个逗号后,无法转义c#中的任何未来逗号

时间:2017-01-18 20:13:56

标签: c# .net csv escaping

我很难使用System.IO.File库的“WriteAllText”方法将字符串中的逗号转义为写入csv文件的字符串。似乎在使用逗号一次而没有转义之后,我再也无法在字符串中转义逗号。

using System.IO;
...
var test = "test, \"test,test\"";
File.WriteAllText(outputPath, test);

输出如下:

enter image description here

预期输出应如下所示:

enter image description here

0 个答案:

没有答案