(C) StringBuilder RemoveAfterFinal
Demonstrates the StringBuilder.RemoveAfterFinal method.
The GetBefore method was added in Chilkat v9.5.0.77
#include <C_CkStringBuilder.h>
void ChilkatSample(void)
{
HCkStringBuilder sb;
BOOL success;
const char *marker;
BOOL bFound;
sb = CkStringBuilder_Create();
success = CkStringBuilder_Append(sb,"abc::def::ghi");
// The RemoveAfterFinal method removes the chars after the final occurrence of the marker.
// It also removes the marker string.
// If the marker is not found, then nothing is removed and the method returns FALSE.
marker = "::";
bFound = CkStringBuilder_RemoveAfterFinal(sb,marker);
printf("bFound = %d\n",bFound);
printf("sb contains: %s\n",CkStringBuilder_getAsString(sb));
// Output is:
// bFound = TRUE
// sb contains: abc::def
CkStringBuilder_Dispose(sb);
}
|