111,129
社区成员
发帖
与我相关
我的任务
分享
StreamReader sr = new StreamReader("f:\\a.txt");
string s = sr.ReadToEnd();
string[] str= Regex.Split(s, "\r\n");
for (int i = 1; i < str.Length-1; i++)
{
string ss=Regex.Match(str[i], "D00000"+i.ToString()+"(\\d+)0100011000100220100605002010060(\\d+)001001001").Groups[1].Value;
Console.WriteLine(ss);
}
