for (int i = 0; i < str.Length - strFind.Length;)
            {
                if (string.Compare(str, i, strFind, 0, strFind.Length, true) == 0)
                {
                    str = str.Remove(i, strFind.Length);
                    str = str.Insert(i, strReplace);
                    i += strReplace.Length;
                }
                else
                {
                    i += 1;
                }

            }

 

안에다가 증가식을 써주는 펫졸드형!

 

좆잡고 반성해봅니다.

 

맨날 for문 돌릴때 (int i=0; i < Length; i++)

 

밖에 모르던 바보가.. 뭔가 하나를 알았다.