I have this string: ABCDEFGHIJ
ABCDEFGHIJ
I need to replace from position 4 to position 5 with the string ZX
ZX
It will look like this: ABC
ABC
string s = "ABCDEFGH"; s= s.Remove(3, 2).Insert(3, "ZX");