假设我有一个 txt 文件,例如:
%Title
%colaborations Destination
1 123
2 456
3 555
%my name Destination
Joe doe $re Washington
Marina Panett $re Texas
..
Laura Sonning $mu New York
%other stuff
如何保存在数组中
array{
("Joe doe $re"),
("Marina Panett $re"),
...,
("Laura Sonning $mu")
}
因为我需要跳过:
%Title
%colaborations Destination
1 123
2 456
3 555
直到我找到
%my name Destination
我会开始阅读直到文件结束,否则我会找到一些东西"%"
我正在考虑使用string txt = System.IO.File.ReadAllText("file.txt");
,但我认为阅读所有 txt 不是一个好主意,因为我只需要一些部分......