What is the fastest most efficient way to search for text for words using insensitive search.
For example, here is my search text:
string textTosearch = "Here is a paragraph or Some text. Here is some more text".
If I wanted to find the "Some" and "some" indexes, is there a .NET class that does this or will I need to use something like regular expressions.
Your thoughts are greatly appreciated.
I am using visual studio 2008.
source share