小编典典

如何查找和替换文件中的文本

all

到目前为止我的代码

StreamReader reading = File.OpenText("test.txt");
string str;
while ((str = reading.ReadLine())!=null)
{
      if (str.Contains("some text"))
      {
          StreamWriter write = new StreamWriter("test.txt");
      }
}

我知道如何找到文本,但我不知道如何用我自己的替换文件中的文本。


阅读 63

收藏
2022-08-19

共1个答案

小编典典

读取所有文件内容。用 替换String.Replace。将内容写回文件。

string text = File.ReadAllText("test.txt");
text = text.Replace("some text", "new value");
File.WriteAllText("test.txt", text);
2022-08-19