不区分大小写的字符串搜索

时间:2010-03-05 16:32:05

标签: c# .net string .net-3.5

使用非区分大小写搜索搜索文字的最快捷最有效的方法是什么。

例如,这是我要搜索的文本:

string textTosearch = "Here is a paragraph or Some text. Here is some more text".

如果我想找到“Some”和“some”的索引,是否有.Net类可以执行此操作,或者我需要使用类似正则表达式的内容。

非常感谢您的想法。

我正在使用visual studio 2008.

1 个答案:

答案 0 :(得分:7)

看一下IndexOf方法:

textTosearch.IndexOf("some", StringComparison.OrdinalIgnoreCase);

Other overloads of this method允许您指定开始索引和要检查的字符数。