使用c#在多个文件中搜索字符串

时间:2016-10-10 03:57:06

标签: c#

我想在目录中的多个文件中搜索单词或字符串。 例如“错误”,“警告”如果任何文件包含三个单词中的任何一个,那么它应该在同一目录中打印messages.all文件。

使用此代码,我可以在单个文件中搜索一个单词,但我想搜索目录中可用的所有d文件。

      List<string> found = new List<string>();
         string line;
         using (StreamReader file = new StreamReader(textBox1.Text))
         {
             while ((line = file.ReadLine()) != null)
             {
                 if (line.Contains("Error: 1"))
                 {
                     found.Add(line);
        MessageBox.Show("Error Found");
                 }
             }
         } 

2 个答案:

答案 0 :(得分:1)

Dictionary<string, string> found = new Dictionary<string, string>();
string line;
bool textFound = false;
foreach (string filename in Directory.GetFiles("path-to-directory"))
{
    using (StreamReader file = new StreamReader(filename))
    {

        while ((line = file.ReadLine()) != null)
        {
            if (line.Contains("Error: 1"))
            {
                found.Add(line,filename);
                MessageBox.Show("Error Found");
                textFound = true;
            }
            if (line.Contains("Warning: 1"))
            {
                found.Add(line,filename);
                MessageBox.Show("Warning Found");
                textFound = true;
            }
        }          
    }  

}
if(!textFound)
           MessageBox.Show("Your message here");

答案 1 :(得分:0)

您可以使用常规表达式:

Regex.Match(line, @"\b(Error: 1|Warning: 1|Others)\b");