Imports System Imports uCalcSoftware Public Module Program Public Sub Main() Dim uc As New uCalc() Dim t = uc.NewTransformer() '// Disable statement sensitivity to handle multi-line content t.DefaultRuleSet.StatementSensitive = false Dim htmlContent = " " t.Text = htmlContent '// A rule to find all list items t.Pattern("
  • {item}
  • ") '// A rule to skip over HTML comments t.SkipOver("") t.Find() Console.WriteLine("--- Found List Items ---") Console.WriteLine(t.Matches.Text) End Sub End Module