Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
276 views
in Technique[技术] by (71.8m points)

c# - How to add a case-insensitive option to Array.IndexOf

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

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

1 Reply

0 votes
by (71.8m points)

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


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...