Sample code for 30+ languages & platforms
Objective-C

StringBuilder ReplaceBetween

Demonstrates the ReplaceBetween method.

Chilkat Objective-C Downloads

Objective-C
#import <CkoStringBuilder.h>

CkoStringBuilder *sb = [[CkoStringBuilder alloc] init];
[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>" endMark: @"</name>" value: @"Software" replacement: @"Technology"] intValue];

//  The number of replacements should be 2.
NSLog(@"%@%d",@"numReplacements = ",numReplacements);

//  The sb now contains:
//  <company><industry>Software</industry><name>Chilkat Technology</name><abc>Abc Software</abc><name>Xyz Technology</name></company>
NSLog(@"%@",[sb GetAsString]);