Imports System
Imports uCalcSoftware
Public Module Program
   Public Sub Main()
      Dim uc As New uCalc()
      Using s As New uCalc.String("Some text <p>This is a paragraph.</p> more text.")
         
         '// Extract the entire paragraph tag, including its start and end tags.
         Dim p_tag = s.BetweenInclusive("<p>", "</p>")
         
         Console.WriteLine(p_tag)
      End Using
   End Sub
End Module