C#输出结果导出到一个Txt文档?

C#输出结果导出到一个Txt文档

程序为
class Program
{
static void Main(string[] args)
{
string strA = new StreamReader(@"c:\a.txt", Encoding.UTF8).ReadToEnd();//a.txt内容
string strB = new StreamReader(@"c:\b.txt", Encoding.UTF8).ReadToEnd();//b.txt(过滤词)
string[] filtStr = strB.Split(',');
for (int i = 0; i < filtStr.Length; i++)
{
strA = strA.Replace(filtStr[i], "***");
}
Console.WriteLine(strA);
Console.ReadKey();
}
}
}
谢谢 !!!

猛跑小猪
浏览 1285回答 1
1回答

慕虎7371278

//更改Console输出重定向: Console.SetOut(new System.IO.StreamWriter("文件名", false, System.Text.Encoding.Default));
打开App,查看更多内容
随时随地看视频慕课网APP