Sample code for 30+ languages & platforms
B4X

StringBuilder ReplaceBetween

Demonstrates the ReplaceBetween method.

Chilkat B4X Downloads

B4X
Dim sb As ChilkatStringBuilder
sb.Initialize
sb.Append("<company><industry>Software</industry><name>Chilkat Software</name><abc>Abc Software</abc><name>Xyz Software</name></company>")

'  The ReplaceBetween method restricts the replacements to only
'  the parts that occur between two delimiter strings.

'  For example:
Dim numReplacements As Int = sb.ReplaceBetween("<name>", "</name>", "Software", "Technology")

'  The number of replacements should be 2.
Log("numReplacements = " & numReplacements)

'  The sb now contains:
'  <company><industry>Software</industry><name>Chilkat Technology</name><abc>Abc Software</abc><name>Xyz Technology</name></company>
Log(sb.GetAsString)