String.Replace is not case insensitive, so what is the best way to do it. There are several ways, if I think of the quickest one it is using regex.
using System.Text.RegularExpressions;string string str = "The quick brown Fox jumps over the lazy dog"; string strReplace = "cat"; string result = Regex.Replace(str, "fox", strReplace, RegexOptions.IgnoreCase);
-Rujith
Disclaimer Postings are provided as is with no warranties, and confer no rights. Opinions expressed here are my own delusions; my employers at best shake their heads and sigh, at worst repudiate the content with extreme prejudice, whenever it manages to appear on their radar.