Sample code for 30+ languages & platforms
Xojo Plugin

StringBuilder GetBetween

Demonstrates the GetBetween method.

Chilkat Xojo Plugin Downloads

Xojo Plugin
Dim sb As New Chilkat.StringBuilder
Dim success As Boolean
success = sb.Append("<company><name>Chilkat Software</name></company>")

// For example, to get the company name in the string above...
Dim companyName As String
companyName = sb.GetBetween("<name>","</name>")
System.DebugLog("Company Name = " + companyName)