如何使用C#查找和替换文件中的文本

到目前为止我的代码

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 text = File.ReadAllText("test.txt");

text = text.Replace("some text", "new value");

File.WriteAllText("test.txt", text);

以上是 如何使用C#查找和替换文件中的文本 的全部内容, 来源链接: utcz.com/qa/426550.html

回到顶部