Questions tagged «delimited-text»

22
C#数据表到CSV
有人可以告诉我为什么下面的代码不起作用。数据已保存到csv文件中,但是没有分隔数据。所有这些都存在于每一行的第一个单元格中。 StringBuilder sb = new StringBuilder(); foreach (DataColumn col in dt.Columns) { sb.Append(col.ColumnName + ','); } sb.Remove(sb.Length - 1, 1); sb.Append(Environment.NewLine); foreach (DataRow row in dt.Rows) { for (int i = 0; i < dt.Columns.Count; i++) { sb.Append(row[i].ToString() + ","); } sb.Append(Environment.NewLine); } File.WriteAllText("test.csv", sb.ToString()); 谢谢。
113 c#  csv  delimited-text 

14
普通文本中使用最少的定界符<ASCII 128
出于编码方面的原因,这会使您感到恐惧(我不好意思地说),我需要将多个文本项存储在单个字符串中。 我将使用字符来分隔它们。 哪个字符最适合用于此目的,即哪个字符最不可能出现在文本中?必须可打印,并且以ASCII表示可能小于128,以避免区域设置问题。
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.