private string ReplaceNoCase(string text, string oldValue, string newValue) { return System.Text.RegularExpressions.Regex.Replace(text, oldValue, newValue, System.Text.RegularExpressions.RegexOptions.IgnoreCase); }