using System; public static class ClipboardFusionHelper { public static string ProcessText(string text) { if (text.Contains(".")) { return text = text.Replace(".", " "); } return text; } }