Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我将其作为 C# 中字符串的一部分:
!"£$$$$$$%&
它最终应该是:
!,",£,$$$$$$,%,&
我的代码在字符发生变化的每一点都用逗号分隔,以便对该部分进行排序。
但是,当在 CSV 文件中打开此输出时,它会变得一团糟,因为 Excel 不喜欢".
"
如何轻松逃脱导致问题的字符?我猜我需要做类似的事情:
String.Replace("\"","X")
在 excel 中,引号被写为“”“”(4 个引号)到 CSV -> 包含转义引号的字符串
这导致以下表达式:
String.Replace("\"","\"\"\"\"")
这将在 excel 中显示一个单引号,但您必须知道您的数据已更改。