using uCalcSoftware; var uc = new uCalc(); var t = uc.NewTransformer(); t.Str("

Title

Bold statement

Title B

Other text"); var BoldTag = t.Pattern("{text}"); var H3Tag = t.Pattern("

{text}

"); t.Find(); Console.WriteLine(t.Matches.Text); Console.WriteLine(""); BoldTag.Active = false; Console.WriteLine($"BoldTag.Active(): {BoldTag.Active}"); Console.WriteLine("-----------------------"); t.Find(); Console.WriteLine(t.Matches.Text); Console.WriteLine(""); BoldTag.Active = true; Console.WriteLine($"BoldTag.Active(): {BoldTag.Active}"); Console.WriteLine("----------------------"); t.Find(); Console.WriteLine(t.Matches.Text); Console.WriteLine("");