30

我知道 c# 有Array.FindAllArray.IndexOf.

Array.FindAllIndexOf哪个返回int[]吗?

4

9 回答 9

39
string[] myarr = new string[] {"s", "f", "s"};

int[] v = myarr.Select((b,i) => b == "s" ? i : -1).Where(i => i != -1).ToArray();

这将返回 0, 2

如果数组中不存在该值,则它将返回一个 int[0]。

做一个扩展方法

public static class EM
{
    public static int[] FindAllIndexof<T>(this IEnumerable<T> values, T val)
    {
        return values.Select((b,i) => object.Equals(b, val) ? i : -1).Where(i => i != -1).ToArray();
    }
}

并称它为

string[] myarr = new string[] {"s", "f", "s"};

int[] v = myarr.FindAllIndexof("s");
于 2012-05-04T06:09:51.637 回答
7

您可以编写如下内容:

string[] someItems = { "cat", "dog", "purple elephant", "unicorn" }; 
var selectedItems = someItems.Select((item, index) => new{
    ItemName = item,
    Position = index});

或者

var Items = someItems.Select((item, index) => new{
    ItemName = item,
    Position = index}).Where(i => i.ItemName == "purple elephant");

阅读使用 LINQ 获取给定项目的索引

于 2012-05-04T06:06:31.187 回答
5

搜索与指定谓词定义的条件匹配的元素,并返回整个 System.Array 中出现的所有从零开始的索引。

public static int[] FindAllIndex<T>(this T[] array, Predicate<T> match)
{
    return array.Select((value, index) => match(value) ? index : -1)
            .Where(index => index != -1).ToArray();
}
于 2013-03-08T13:52:52.300 回答
5

我知道这是一篇旧帖子,但您可以尝试以下方法,

string[] cars = {"Volvo", "BMW", "Volvo", "Mazda","BMW","BMW"};
var res = Enumerable.Range(0, cars.Length).Where(i => cars[i] == "BMW").ToList();

以列表形式返回{1,4,5}

于 2020-01-03T14:38:25.650 回答
2

不,那里没有。但是您可以编写自己的扩展方法

public static int[] FindAllIndexOf<T>(this T[] a, Predicate<T> match)
{
   T[] subArray = Array.FindAll<T>(a, match);
   return (from T item in subArray select Array.IndexOf(a, item)).ToArray();
}

然后,对于您的数组,调用它。

于 2012-05-04T06:24:08.753 回答
1

您可以循环使用findIndex给出索引

string[] arr = { "abc", "asd", "def", "abc", "lmn", "wer" };
int index = -1;
do
{
    index = Array.IndexOf(arr, "abc", index + 1);
    System.Console.WriteLine(index);
} while (-1 != index);
于 2012-05-04T06:14:59.240 回答
0

我使用 Nikhil Agrawal 的答案创建了以下相关方法,这可能很有用。

public static List<int> FindAllIndexOf<T>(List<T> values, List<T> matches)
    {
        // Initialize list
        List<int> index = new List<int>();

        // For each value in matches get the index and add to the list with indexes
        foreach (var match in matches)
        {
            // Find matches 
            index.AddRange(values.Select((b, i) => Equals(b, match) ? i : -1).Where(i => i != -1).ToList());

        }

        return index;
    }

它需要一个包含值的列表和一个包含要匹配的值的列表。它返回带有匹配索引的整数列表。

于 2018-01-19T10:05:28.083 回答
0

您可以通过仅创建 2 个整数变量来解决此问题。给你更多的力量!

string[] seasons= { "Fall","Spring", "Summer", "Fall", "Fall", "Winter"};

int i = 0;

int IndexOfFallInArray = 0;

int[] IndexesOfFall= new int[seasons.Length];

foreach (var item in seasons)
{
    if (item == "Fall")
        {
            IndexesOfFall[i] = IndexOfFallInArray;
            i++;
        }
        IndexOfFallInArray++;
}
于 2018-12-31T21:15:38.203 回答
-2

我知道这个问题已经回答了,这只是另一种方法。请注意,我使用ArrayList而不是int[]

// required using directives
using System;
using System.Collections;

String      inputString = "The lazy fox couldn't jump, poor fox!";
ArrayList   locations   =  new ArrayList();      // array for found indexes
string[] lineArray = inputString.Split(' ');     // inputString to array of strings separated by spaces

int tempInt = 0;
foreach (string element in lineArray)
{
     if (element == "fox")
     {
         locations.Add(tempInt);   // tempInt will be the index of current found index and added to Arraylist for further processing 
     }
 tempInt++;
}
于 2017-06-24T22:55:37.703 回答