Sample code for 30+ languages & platforms
C++

StringBuilder ReplaceBetween

Demonstrates the ReplaceBetween method.

Chilkat C++ Downloads

C++
#include <CkStringBuilder.h>

void ChilkatSample(void)
    {
    CkStringBuilder sb;
    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:
    int numReplacements = sb.ReplaceBetween("<name>","</name>","Software","Technology");

    //  The number of replacements should be 2.
    std::cout << "numReplacements = " << numReplacements << "\r\n";

    //  The sb now contains:
    //  <company><industry>Software</industry><name>Chilkat Technology</name><abc>Abc Software</abc><name>Xyz Technology</name></company>
    std::cout << sb.getAsString() << "\r\n";
    }