我的名为test.txt的文本文件包含
在签入/结帐期间检查元素和支持问题时修复类型管理器错误。合并相关问题。
现在我想使用c#删除文本“支持问题”。
请有人告诉我。
提前致谢, Naveenkumar.T
答案 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 ",""));
希望有所帮助。