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

Title

Bold statement

Title B

Other text

My paragraph

"); var AnyOtherTag = t.Pattern("<{tag}>{text}"); var BoldTag = t.Pattern("{text}"); var H3Tag = t.Pattern("

{text}

"); t.Find(); Console.WriteLine($"All matches -- count = {t.Matches.Count()}"); Console.WriteLine("----------------------"); Console.WriteLine(t.Matches.Text); Console.WriteLine(""); Console.WriteLine($"Only BoldTag matches -- count = {BoldTag.Matches.Count()}"); Console.WriteLine("-------------------------------"); Console.WriteLine(BoldTag.Matches.Text); Console.WriteLine(""); Console.WriteLine($"Only H3Tag matches -- count = {H3Tag.Matches.Count()}"); Console.WriteLine("-----------------------------"); Console.WriteLine(H3Tag.Matches.Text);