Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Can linq somehow be used to find the index of a value in an array?

For instance, this loop locates the key index within an array.

for (int i = 0; i < words.Length; i++)
{
    if (words[i].IsKey)
    {
        keyIndex = i;
    }
}
share|improve this question
Actually, just getting the word would be fine as well. – initialZero Nov 19 '09 at 17:16

7 Answers

up vote 54 down vote accepted
int keyIndex = words.ToList().FindIndex(w => w.IsKey);

That actually gets you the integer index and not the object, regardless of what custom class you have created

share|improve this answer
5  
The conversion of the array to a list is inefficient. I more efficent method is to use Array.IndexOf as indicated in this answer. – ahsteele Dec 19 '12 at 17:22
2  
Holy necro comment! I agree, your method is much more efficient. The answer is from three years ago and I wouldn't needlessly enumerate nowadays. – masenkablast Dec 19 '12 at 18:25
1  
that's the thing about Stack Overflow old code which would normally just rot away in a legacy code base is now preserved for all to see. I have my fair share of this all over the site. – ahsteele Dec 19 '12 at 18:42
1  
@ahsteele, Point taken! – masenkablast Dec 20 '12 at 15:34

The accepted answer is quiet inefficient, since it ends up creating a new List<T> for no reasons.

If words is an array, you can simply use Array.FindIndex<T>:

int keyIndex = Array.FindIndex(words, w => w.IsKey);
share|improve this answer

If you want to find the word you can use

var word = words.Where(item => item.IsKey).First();

This gives you the first item for which IsKey is true (if there might be non you might want to use .FirstOrDefault()

To get both the item and the index you can use

KeyValuePair<WordType, int> word = words.Select((item, index) => new KeyValuePair<WordType, int>(item, index)).Where(item => item.Key.IsKey).First();
share|improve this answer
linq is insane. I thought Java generics were crazy. Anyways, thanks for all the help. – initialZero Nov 19 '09 at 17:25
Is casting the return value accepted practice or is there a way to define the type of word? – initialZero Nov 19 '09 at 17:26
ok, I came up with this. DecodedMessageWord keyWord = words.Where(x => x.IsKey == true).First<DecodedMessageWord>(); – initialZero Nov 19 '09 at 17:27
4  
@initialZero check out the overloads for First, it takes a predicate, you don't need the Where. – Yuriy Faktorovich Apr 4 '12 at 17:47
int keyIndex = words.TakeWhile(w => !w.IsKey).Count();
share|improve this answer

Try this...

var key = words.Where(x => x.IsKey == true);
share|improve this answer
2  
This seems like a very weak solution compared to the answers by Grizzly and masenkablast. masenkablast answers the original question and Grizzly gives a better solution for finding the word, as his final "var" will be the actual word and not a IEnumerable<TSource> that contains 1 word. – James Mar 25 '11 at 15:22

Just posted my implementation of IndexWhere() extension method (with unit tests):

http://snipplr.com/view/53625/linq-index-of-item--indexwhere/

Example usage:

int index = myList.IndexWhere(item => item.Something == someOtherThing);
share|improve this answer
I wouldn't use that library, it doesn't implement those methods correctly. It ignores the disposal. – Yuriy Faktorovich Apr 4 '12 at 17:51
int index = -1;
index = words.Any (word => { index++; return word.IsKey; }) ? index : -1;
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.