使用c#删除文件中的特定文本?

时间:2010-07-21 10:47:16

标签: c# file string

我的名为test.txt的文本文件包含

  

在签入/结帐期间检查元素和支持问题时修复类型管理器错误。合并相关问题。

现在我想使用c#删除文本“支持问题”。

请有人告诉我。

提前致谢, Naveenkumar.T

1 个答案:

答案 0 :(得分:2)

如果文件很小,你可以这样做:

using System.IO; // at the top of the file

string file = "path.txt"; // change to the path

// read the whole file into a string, make a replacement, then write all string to a file
File.WriteAllText(file, File.ReadAllText(file).Replace("supporting issues ",""));

希望有所帮助。