Processing Ajax...

Title

Message

Confirm

Confirm

Confirm

Confirm

Are you sure you want to delete this item?

Confirm

Are you sure you want to delete this item?

Remove Formatting From Teams Message

Description
This macro will remove the extra morning from a message copied in Microsoft Teams.
Language
C#.net
Minimum Version
Created By
Voy
Contributors
-
Date Created
Aug 29, 2023
Date Last Modified
Aug 29, 2023

Macro Code

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;
}
}