读取C#中位置未知的特定行

本文关键字:未知 位置 读取 | 更新日期: 2023-09-27 18:24:35

我正在尝试编写一个程序,从.txt文件中读取用户组,并将所述组放入列表框中。组列表的示例如下:

用户

---------------

第1组

第2组

第3组

[space]

[space]

下一个用户

每个用户都在未知数量的组中,这就是为什么有两个空格,只是为了分隔所有内容。

以下是我迄今为止的进展:

 private void Button_Click(object sender, RoutedEventArgs e) {
        //users.txt contains all users
        //in the same directory there are multiple lists with given groups
        StreamReader sr = new StreamReader("c:''ADHistory''users.txt", System.Text.Encoding.Default);
        string line = string.Empty;
        try {
            //Read the first line of text
            line = sr.ReadLine();
            //Continue to read until you reach end of file
            while (line != null) {
                listboxNames.Items.Add(line);
                //Read the next line
                line = sr.ReadLine();
            }
            //close the file
            sr.Close();
        }
        catch (Exception f)
        {
            MessageBox.Show(f.Message.ToString());
        }
        finally
        {
            //close the file
            sr.Close();
        }
    }
    private void listboxNames_SelectionChanged(object sender, SelectionChangedEventArgs e) {
        //as soon as you choose a user from the first list
        //you may choose a date to look at all groups the user is in.
        listboxDates.Items.Clear();
        DirectoryInfo dinfo = new DirectoryInfo(@"C:'ADHistory");
        FileInfo[] Files = dinfo.GetFiles("*.txt");
        //this adds all dates into the second listbox
        //and removes users.txt from the list.
        foreach (FileInfo file in Files) {
            listboxDates.Items.Add(file.Name);
        }
        for (int n = listboxDates.Items.Count - 1; n >= 0; --n)
        {
            string removelistitem = "users";
            if (listboxDates.Items[n].ToString().Contains(removelistitem))
            {
                listboxDates.Items.RemoveAt(n);
            }
            //this displays the user below the listboxes,
            //because of styling purposes
            string user = Convert.ToString(this.listboxNames.SelectedItem);
            labelName.Content = user;
        }
    }
    //here we have my main problem.
    //I can't find a solution to add the groups to the last listbox
    private void listboxDates_SelectionChanged(object sender, SelectionChangedEventArgs e)
    {
        string user = Convert.ToString(labelName.Content);
        listboxGroups.Items.Clear();
        string path = "C:''ADHistory''";
        path += Convert.ToString(this.listboxDates.SelectedItem);
        foreach (string line in File.ReadLines(path))
        {
            if (line.Contains(user))
            {
                while (line != " ")
                {
                    listboxGroups.Items.Add(line);
                }
            }
        }
    }

我真的希望你能帮助我。

编辑

这个问题已经回答了,所以不需要更多的答案。感谢所有评论:)

读取C#中位置未知的特定行

您的问题是,当找到用户的行时,您可以在不进行下一步的情况下测试line==",while循环应该立即退出,然后

使用for循环而不是for each。当您找到用户的行时,使用while循环,并在while循环中用++增加循环变量,然后读取下一行。在设置line=fileLines[lineIndex]之前,不要忘记检查字符串数组的长度

因此,以下是应该为您工作的代码

string[] fileLines = File.ReadAllLines(path);
for (int lineIndex = 0; lineIndex < fileLines.Length; lineIndex++)
{
    string line = fileLines[lineIndex];
    if (line.Contains(user))
    {
        while(++lineIndex < fileLines.Length && (line = fileLines[lineIndex]) != " ")
        {
            listboxGroups.Items.Add(line);
        }
        break;
    }
}

然而,如果文件很大,你可能不想把它的所有行都读到内存中,这里有另一种方法可以使用file.ReadLines()

IEnumerator<string> fileLines = File.ReadLines(path).GetEnumerator();
while (fileLines.MoveNext())
{
    string line = fileLines.Current;
    if (line.Contains(user))
    {
        while (fileLines.MoveNext())
        {
            line = fileLines.Current;
            if (line == " ")
            {
                break;
            }
            listboxGroups.Items.Add(line);
        }
        break;
    }
}