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") Dim BoldTag = t.Pattern("{text}") Dim 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("") End Sub End Module