using uCalcSoftware; var uc = new uCalc(); var t = new uCalc.Transformer(); t.FromTo("This is a [very] important test", "MATCHED"); // Matches with the optional word Console.WriteLine(t.Transform("This is a very important test")); // Also matches without the optional word Console.WriteLine(t.Transform("This is a important test"));