Sample code for 30+ languages & platforms
Visual FoxPro

StringBuilder ReplaceBetween

Demonstrates the ReplaceBetween method.

Chilkat Visual FoxPro Downloads

Visual FoxPro
LOCAL loSb
LOCAL lnNumReplacements

loSb = CreateObject('Chilkat.StringBuilder')
loSb.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:
lnNumReplacements = loSb.ReplaceBetween("<name>","</name>","Software","Technology")

* The number of replacements should be 2.
? "numReplacements = " + STR(lnNumReplacements)

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

RELEASE loSb