我有一个文本文件,其中每隔几行就会在行首重复一个特定字符。没有。之间的行数不固定。我能够找出发生这种情况的那些行。我想阅读介于两者之间的那些行。
using (StreamReader sr = new StreamReader(@"text file"))
{
string line;
while ((line = sr.ReadLine()) != null)
{
if (line.StartsWith("some character"))
因为下一次,这个字符出现,代码保持不变。我无法阅读介于两者之间的那些行
例如。
Condition at the begining of a line
Next line
Next line
Condition at the begining of a line
Next Line
Next Line
Next Line
Next Line
Condition at the begining of a line
我必须阅读中间的行。情况每次都保持不变。谢谢。