using System; using System.Text; public class Test { public static void Main() { string s = "This is an example to show where to bold the text"; StringBuilder sb = new StringBuilder(s); sb.Remove(5, 2); sb.Insert(5, "is"); Console.WriteLine(s); } }