到目前为止我有这个代码。它查看文本文档并显示其中包含单词word
的行。我想让它跳过该行并在文本文档中显示下一个,我该怎么做?
例如,它看起来是文本文档,并在其中找到包含单词“word”的行,然后显示在它之后的行,没有其他行
string line;
// Read the file and display it line by line.
System.IO.StreamReader file = new System.IO.StreamReader("test.txt");
while ((line = file.ReadLine()) != null)
{
if (line.Contains("word"))
{
Console.WriteLine(line);
}
}
file.Close();