gpt4 book ai didi

c# - 在 C# 中使用 LINQ 进行分组 - 索引越界

转载 作者:行者123 更新时间:2023-12-02 19:43:36 24 4
gpt4 key购买 nike

我试图根据字符串的扩展名(最后三个字符)对字符串进行分组,以训练我的 LINQ 技能(我是新手),但我不断遇到异常:

System.ArgumentOutOfRangeException: 'Index and length must refer to a location within the string.

我的代码如下:我的错误在哪里?

string[] files = new string[10] {"OKO.pdf","aaa.frx", "bbb.TXT", "xyz.dbf","abc.pdf", "aaaa.PDF","xyz.frt", "abc.xml", "ccc.txt", "zzz.txt"};

var res = from file in files
group file by file.Substring(file.IndexOf(".")+1,file.Length-1) into extensions
select extensions;

var res1 = files.GroupBy(file => file.Substring(file.IndexOf("."), file.Length - 1));

foreach(var group in res)
{
Console.WriteLine("There are {0} files with the {1} extension.", group.Count(), group.Key);
}

最佳答案

正如jdweng 在评论部分提到的。您只需要使用 Substring 的重载

The substring starts at a specified character position and continues to the end of the string.

string[] files = new string[10] { "OKO.pdf", "aaa.frx", "bbb.TXT", "xyz.dbf", "abc.pdf", "aaaa.PDF", "xyz.frt", "abc.xml", "ccc.txt", "zzz.txt" };

var res = from file in files
group file by file.Substring(file.IndexOf(".") + 1) into extensions
select extensions;

foreach (var group in res)
{
Console.WriteLine("There are {0} files with the {1} extension.", group.Count(), group.Key);
}

结果将是:

There are 2 files with the pdf extension.
There are 1 files with the frx extension.
There are 1 files with the TXT extension.
There are 1 files with the dbf extension.
There are 1 files with the PDF extension.
There are 1 files with the frt extension.
There are 1 files with the xml extension.
There are 2 files with the txt extension

关于c# - 在 C# 中使用 LINQ 进行分组 - 索引越界,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59739303/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com