gpt4 book ai didi

c# - 如何在C#中查找char数组中的字符索引

转载 作者:太空宇宙 更新时间:2023-11-03 17:48:04 26 4
gpt4 key购买 nike

我想在 char 数组中找到一个字符的索引。我写了下面的代码,但我想要使用一些 library function/LINQ 来查找索引而不是手动循环通过这。有没有什么更聪明/更简洁的方式我可以实现的。

尝试:

    var index = -1;
char[] x = { 'A', 'B', 'C', 'D' , 'E'};

for(int t = 0; t< x.Length; t++)
{
if (x[t] == 'E')
index = t;
}

Console.WriteLine($"Index is: {index}");

最佳答案

对于本例,您可以使用 Array.IndexOf .

char[] x = { 'A', 'B', 'C', 'D', 'E' };

Console.WriteLine($"Index is: {Array.IndexOf(x, 'E')}");

关于c# - 如何在C#中查找char数组中的字符索引,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54813331/

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