Sample code for 30+ languages & platforms
Unicode C++

StringBuilder SetNth

Demonstrates the SetNth method.

Chilkat Unicode C++ Downloads

Unicode C++
#include <CkStringBuilderW.h>

void ChilkatSample(void)
    {
    //  The SetNth method is handy for setting a part of a delimited string.
    //  For example:

    CkStringBuilderW sb;
    sb.Append(L"red,blue,\"green,purple\",,yellow");

    const wchar_t *delimiterChar = L",";
    bool exceptDoubleQuoted = true;
    bool exceptEscaped = true;

    sb.SetNth(2,L"magenta",delimiterChar,exceptDoubleQuoted,exceptEscaped);
    //  Prints "red,blue,magenta,,yellow"
    wprintf(L"%s\n",sb.getAsString());

    sb.SetNth(3,L"orange",delimiterChar,exceptDoubleQuoted,exceptEscaped);
    //  Prints "red,blue,magenta,orange,yellow"
    wprintf(L"%s\n",sb.getAsString());

    //  What happens if we start with an empty string?
    sb.Clear();

    sb.SetNth(2,L"apple",delimiterChar,exceptDoubleQuoted,exceptEscaped);
    //  Prints ",,apple"
    wprintf(L"%s\n",sb.getAsString());

    sb.SetNth(0,L"orange",delimiterChar,exceptDoubleQuoted,exceptEscaped);
    //  Prints "orange,,apple"
    wprintf(L"%s\n",sb.getAsString());

    sb.SetNth(1,L"banana",delimiterChar,exceptDoubleQuoted,exceptEscaped);
    //  Prints "orange,banana,apple"
    wprintf(L"%s\n",sb.getAsString());
    }