如果字符串比较,我想在 txt 文件中找到一个字符串,它应该继续读取行,直到我用作参数的另一个字符串。
例子:
CustomerEN //search for this string
...
some text which has details about the customer
id "123456"
username "rootuser"
...
CustomerCh //get text till this string
否则,我需要详细信息才能与他们合作。
我正在使用 linq 搜索“CustomerEN”,如下所示:
File.ReadLines(pathToTextFile).Any(line => line.Contains("CustomerEN"))
但是现在我一直坚持阅读行(数据)直到“CustomerCh”来提取细节。