String Replace 不区分大小写的方法

在C#写代码时发现Replace没有像compare一样有区分大小对比的方法,  所以我就自己写了一个方法ReplaceStr

如下:

   private string ReplaceStr(string str, string key, string value,bool IgnoreCase)
        {
            string newstr = str.Replace(key, value);

            int i = newstr.IndexOf(key, StringComparison.OrdinalIgnoreCase);

            if (i > 0&&IgnoreCase)
            {
                key = newstr.Substring(i, key.Length);
                return ReplaceStr(newstr, key, value,IgnoreCase);
            }
            else
            {
                return newstr;
            }

        }

主要用到的还是 
newstr.IndexOf(string, StringComparison.OrdinalIgnoreCase)有StringComparison.OrdinalIgnoreCase属性不区分大小写.

你可能感兴趣的:(replace)