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}").SetDescription("other kind of tag"); var BoldTag = t.Pattern("{text}").SetDescription("bold tag"); var H3Tag = t.Pattern("

{text}

").SetDescription("h3 tag"); t.Find(); foreach(var match in t.Matches) { Console.WriteLine(match.Text + " Description: " + match.Rule.Description); }