-2

我需要在 SSIS 中使用 C# 从 CSV 文件中删除行

这是我的文件

XXXX,,,,,,,
XXXX111,,,,,,,
XXXX222,,,,,,,
A,b,c,d,e,f
g,h,i,j,k,l
1,2,3,4,5,6
,,,,,,,,,,,
,,,,,,,,,,,
,,,,,,,,,,,

这是我的输出应该是什么样子

A,b,c,d,e,f
g,h,i,j,k,l
1,2,3,4,5,6

基本上我需要删除

XXXX,,,,,,,
XXXX111,,,,,,,
XXXX222,,,,,,, 
,,,,,,,,,,,
,,,,,,,,,,,
,,,,,,,,,,,

提前致谢

4

1 回答 1

2

这是一个基于您的 5 个逗号标准的简单解决方案

List<String> lines = new List<string>();
string line;
System.IO.StreamReader file = new System.IO.StreamReader("c:\\test.txt");

while ((line = file.ReadLine()) != null)
{
    lines.Add(line);
}

lines.RemoveAll(l => l.Contains(",,,,,"));

然后你可以把它写回去或者你想要的任何东西

写出:

using (System.IO.StreamWriter outfile = new System.IO.StreamWriter(outputPath))
{
      outfile.Write(String.Join(System.Environment.NewLine, lines.ToArray()));
}   
于 2013-07-25T18:23:46.093 回答