Imports System Imports uCalcSoftware Public Module Program Public Sub Main() Dim uc As New uCalc() Dim t = uc.NewTransformer() t.Str("

Title

Bold statement

Title B

Other text

My paragraph

") Dim AnyOtherTag = t.Pattern("<{tag}>{text}").SetDescription("other kind of tag") Dim BoldTag = t.Pattern("{text}").SetDescription("bold tag") Dim H3Tag = t.Pattern("

{text}

").SetDescription("h3 tag") t.Find() For Each match In t.Matches Console.WriteLine(match.Text + " Description: " + match.Rule.Description) Next End Sub End Module