System.IO.StreamReader file = new System.IO.StreamReader(@"data.txt");
List<String> Spec= new List<String>();
while (file.EndOfStream != true)
{
    string s = file.ReadLine();
    Match m = Regex.Match(s, "Spec\\s");
    if (m.Success)
    {
        int a = Convert.ToInt16(s.Length);
        a = a - 5;
        string part = s.Substring(5, a);
        Spec.Add(part);
     }
}


我试图获取包含单词“ Spec”和空格字符的所有行,但是运行此程序时出现错误。

异常的详细信息如下:

An unhandled exception of type 'System.ArgumentOutOfRangeException' occurred in mscorlib.dll

谁能协助我找出原因?

文本文件:

ID  560
Spec    This ... bla bla

blah...
blah...
bla bla
bla
Category    Other
Price   $259.95


ID  561
Spec    more blah blah...

blah...
blah...
bla bla
bla
Category    Other
Price   $229.95

最佳答案

System.IO.StreamReader file = new System.IO.StreamReader("data.txt");
List<string> Spec = new List<string>();
while (!file.EndOfStream)
{
    if(file.ReadLine().Contains("Spec"))
    {
        Spec.Add(s.Substring(5, s.Length - 5));
    }
}


那可能行得通。

关于c# - 查找包含给定字符串的所有行,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/16628041/

10-13 07:14