gpt4 book ai didi

c# - 使用字符串生成器,我读取了一个文件。如何查找给定字符串是否存在于文件中?

转载 作者:行者123 更新时间:2023-11-30 19:30:11 25 4
gpt4 key购买 nike

我已将文件读入 StringBuilder。当我将字符串作为输入时,如果文件中存在该词,则输出应为真。如果不存在,则应为假。我该怎么做?有人可以帮我处理代码吗?我已经写了程序到这里..我如何走得更远?非常感谢..:)

class Program
{
static void Main(string[] args)
{
using (StreamReader Reader = new StreamReader("C://myfile2.txt"))
{
StringBuilder Sb = new StringBuilder();
Sb.Append(Reader.ReadToEnd());
{
Console.WriteLine("The File is read");
}
}
}
}

最佳答案

单行如何:

 bool textExists = System.IO.File.ReadAllText("C:\\myfile2.txt").Contains("Search text");

这应该可以解决问题:)

关于c# - 使用字符串生成器,我读取了一个文件。如何查找给定字符串是否存在于文件中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9785650/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com