我想在字符串比較的時候在txt文件中找到一個字符串,它應該繼續讀取行,直到我用作參數的另一個字符串。c#在txt文件中搜索字符串
例子:
CustomerEN //search for this string
...
some text wich has details about customer
id "123456"
username "rootuser"
...
CustomerCh //get text till this string
我需要的細節,否則與他們一起工作。
我使用LINQ搜索「CustomerEN」是這樣的:
File.ReadLines(pathToTextFile).Any(line => line.Contains("CustomerEN"))
但現在我只能堅持讀線(數據),直到「CustomerCh」提取細節。
聽起來像您需要的正則表達式,而不是LINQ – thumbmunkeys