Imports System
Imports uCalcSoftware
Public Module Program
   Public Sub Main()
      Dim uc As New uCalc()
      Using s As New uCalc.String("Data (important) more data")
         
         '// Get the text between the opening and closing parenthesis
         Dim content = s.Between("(", ")")
         
         Console.WriteLine(content)
      End Using
   End Sub
End Module