public static class ClipboardFusionHelper
{
public static string ProcessText(string text)
{
Regex rx = new Regex(@"\[((([0-9]\/?)+|Monday|Tuesday|Wednesday|Thursday|Friday|Saturday|Sunday)\s)*[0-9]+:[0-9]+\s[AP]M\]\s[\w| ]+\s\n", RegexOptions.Multiline);
text = rx.Replace(text, "");
return text;
}
}