using System; using System.Text; public static class ClipboardFusionHelper { public static string ProcessText(string text) { text = text.Remove(2, 1); text = text.Insert(2, "-"); text = text.Remove(5, 1); text = text.Insert(5, "-"); return text; } }