Imports System Imports uCalcSoftware Public Module Program Public Sub Main() Dim uc As New uCalc() Dim t As New uCalc.Transformer() t.FromTo("{@sq}", "$") '// Only the single quote should be replaced Console.WriteLine(t.Transform("""Hello"" and 'World'")) End Sub End Module