Xojo Plugin
Xojo Plugin
StringBuilder GetBetween
Demonstrates the GetBetween method.Chilkat Xojo Plugin Downloads
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)