2

我想根据 CSV 文件中数据库的条件更新一列(第三列)。想要删除 100,并将其替换为 ,,对于 CSV 文件中具有 Dept 1500 的员工

数据库表:

EmpID DeptID

100 1500

101 1300

102 1500

CSV 文件如下图所示:

EmpID,EmpName,Score,Grade1,Grade2,Grade3
100,emp1,100,A1,A3
101,emp2,250,A1,A5,A2
102,emp3,100,A1

结果应该是这样的:

100,emp1,,A1,A3
101,emp2,250,A1,A5,A2
102,emp3,,A1

首先,我无法替换第三列中的值,请参见下面的代码:

string file1 = @"F:\test.csv"; string[] lines = System.IO.File.ReadAllLines(file1);
System.IO.StreamWriter sw = new System.IO.StreamWriter(file1);    
foreach(string s in lines) { 
    sw.WriteLine(s.Replace("100", ""));    
}    
sw.Close();

如果我在 foreach 循环中给出以下行:

sw.WriteLine(Regex.Replace(s, s.Split(',')[2], m => s.Split(',')[2].ToString().Replace("100", "")));

它将所有值从 100 替换为空字符串。

你能告诉我如何替换第三列中的值吗?

提前致谢。

4

1 回答 1

2
var lines = new string[10];
var splitLines = lines.Select(l => l.Split(','));
foreach (var splitLine in splitLines)
{
    if (splitLine[2] == "100")
    {
        splitLine[2] = "0";
    }
    var line = string.Join(",", splitLine);

    // And then do what you wish with the line.
}
于 2012-10-27T12:40:33.230 回答