This will replace values in a string while ignoring case sensitivty. The example below actually is a remove version of replace.
string myString = "hello world"
string removeMe = "HELLO";
myString = System.Text.RegularExpressions.Regex.Replace(myString, removeMe, "", System.Text.RegularExpressions.RegexOptions.IgnoreCase);