(PHP ActiveX) StringBuilder ReplaceBetween
Demonstrates the ReplaceBetween method.
<?php
// For versions of Chilkat < 10.0.0, use new COM('Chilkat_9_5_0.Chilkat.StringBuilder')
$sb = new COM("Chilkat.StringBuilder");
$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:
$numReplacements = $sb->ReplaceBetween('<name>','</name>','Software','Technology');
// The number of replacements should be 2.
print 'numReplacements = ' . $numReplacements . "\n";
// The sb now contains:
// <company><industry>Software</industry><name>Chilkat Technology</name><abc>Abc Software</abc><name>Xyz Technology</name></company>
print $sb->getAsString() . "\n";
?>
|