I am trying to create a regular expression that will search a memo and replace all values that are between "[]" brackets. Example:
static void Main()
{
string text = @"This is a memo for: [employeeName]. From: [supervisorsName]. This is inregards to [trainingType]\n"
+ " on [Date].";
string pattern = "I NEED THIS INFORMTION";...