中的一些文本使用streamReader讀取文件。
如果行以1
開頭,我想使用這一行。
該生產線將讀取類似:1,103,1,4454:HH
通讀流讀取器並使用行
所以我想第一,
之後,但在第二次前搶號。所以我需要103
並將其分配給產品編號:
int ProductID;
using (StreamReader sr = new StreamReader(fakeFileToProcess))
{
while (!sr.EndOfStream)
{
string line = sr.ReadLine();
if (line.StartsWith("1,"))
{
//so line will be 1,103,1,44543:HH
//How do I capture the '103'...something like:
//ProductID = line.read between "1," & ","(next comma)
}
if (line.StartsWith("25"))
{
continue;
}
}
}