Imports System
Imports uCalcSoftware
Public Module Program
   Public Sub Main()
      Dim uc As New uCalc()
      Dim t = uc.NewTransformer().SetText("Test1 'a b c' a b c Test2 'a b c' a b c")
      
      Dim Test1 = t.FromTo("Test1 {txt} b", "[{txt}]") '// defaults to QuoteSensitive = true
      Dim Test2 = t.FromTo("Test2 {txt} b", "({txt})").SetQuoteSensitive(false)
      t.Transform()
      
      Console.WriteLine($"Test1 QuoteSensitive = {Test1.QuoteSensitive}")
      Console.WriteLine($"Test2 QuoteSensitive = {Test2.QuoteSensitive}")
      
      Console.WriteLine(t)
   End Sub
End Module