FileStream Class C#从文本文件到数组的输入

问题描述 投票:0回答:1

我正在尝试使用StreamReader并从文本文件中获取数据并将其存储到数组中。我有一个问题,我认为修复很简单,但我很难过。当我打印数组时,它会打印txt文件中的每个标记,而不是包含搜索名称的单行数据以及11个int标记。 Long_Name.txtsample

public class SSA
{
    public void Search()
    {
        Console.WriteLine("Name to search for?");
        string n = Console.ReadLine();
        Search(n, "Files/Names_Long.txt");
    }
    public int[] Search(string targetName, string fileName)         
    {
        int[] nums = new int[11];
        char[] delimiters = { ' ', '\n', '\t', '\r' };
        using (TextReader sample2 = new StreamReader("Files/Exercise_Files/SSA_Names_Long.txt"))
        {
            string searchName = sample2.ReadLine();

            if (searchName.Contains(targetName))
            {
                Console.WriteLine("Found {0}!", targetName);
                Console.WriteLine("Year\tRank");
            }
            else
                Console.WriteLine("{0} was not found!", targetName);

            while (searchName != null)
            {
                string[] tokensFromLine = searchName.Split(delimiters, StringSplitOptions.RemoveEmptyEntries);
                int arrayIndex = 0;
                int year = 1900;
                foreach (string token in tokensFromLine)
                {
                    int arrval;

                    if (int.TryParse(token, out arrval))
                    {
                        nums[arrayIndex] = arrval;
                        year += 10;
                        Console.WriteLine("{0}\t{1}", year, arrval);
                        arrayIndex++;  
                    }  
                }
                    searchName = sample2.ReadLine();
            }
        }
            return nums;
    }
}
c# arrays delimiter streamreader
1个回答
0
投票

这肯定是很多代码,这个代码片段没有考虑重复,但如果你愿意使用linq,这样的事情可能有帮助吗?您也可以使用for循环遍历file_text数组,并可能在其中设置返回数组。无论如何要少得多的代码

    public int[] Search(string targetName, string fileName)
    {
        List<string> file_text = File.ReadAllLines("Files/Exercise_Files/SSA_Names_Long.txt").ToList();
        List<string> matching_lines = file_text.Where(w => w == targetName).ToList();
        List<int> nums = new List<int>();
        foreach (string test_line in matching_lines)
        {
            nums.Add(file_text.IndexOf(test_line));
        }
        return nums.ToArray();
    }
© www.soinside.com 2019 - 2024. All rights reserved.