Hi There, What is the quickest most efficient way to search text for words using non-casesensitive search. E.g here is my text to be searched : string textTosearch = "Here is a paragraph or Some text. Here is some more text".
If i wanted to find the indexes of "Some" and "some", is there a .Net class string that does this or would i need to use something like regular expressions. Your thoughts are much appreciated. Im using visual studio 2008.