到目前为止我的代码
StreamReader reading = File.OpenText("test.txt"); string str; while ((str = reading.ReadLine())!=null) { if (str.Contains("some text")) { StreamWriter write = new StreamWriter("test.txt"); } }
我知道如何查找文本,但是我不知道如何用自己的文本替换文件中的文本。
读取所有文件内容。用替换String.Replace。将内容写回到文件。
String.Replace
string text = File.ReadAllText("test.txt"); text = text.Replace("some text", "new value"); File.WriteAllText("test.txt", text);