Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I have a string

string str="hello";

This is my array

string[] myarr = new string[] {"good","Hello", "this" , "new"};

I need to find the index of "hello" from the array (Without Using a Loop)

So i have used

int index = Array.IndexOf(myarr, str);

This returns -1 ,But i am expecting result as 1.

I have even tried with StringComparer.OrdinalIgnoreCase but no avail.

Hope someone can help. Thanks.

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
269 views
Welcome To Ask or Share your Answers For Others

1 Answer

Beaware !! The Answer marked might have some problem , like

string array[] = {"hello", "hi", "bye" , "welcome" , "hell"}

if you use the same method as described in the answer to find the index of word "hell"

Int Indexofary = Array.FindIndex(array, t => t.IndexOf("hell", StringComparison.InvariantCultureIgnoreCase) >=0);

you will get result Indexofary = 0 instead of 4.

Instead of that use

Array.FindIndex(array, t => t.Equals("hell", StringComparison.InvariantCultureIgnoreCase));

to get proper result .

Rrgards Bits


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...