using System; public class Test { public static void Main() { string text = "abcdefghijklmnopqrstuvwxyz"; text = text.Remove(3, "hello world".Length).Insert(3, "hello world"); Console.WriteLine(text); } }