Chilkat HOME Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi DLL Go Java Node.js Objective-C PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(Unicode C) StringBuilder SetNthDemonstrates the SetNth method.
#include <C_CkStringBuilderW.h> void ChilkatSample(void) { HCkStringBuilderW sb; const wchar_t *delimiterChar; BOOL exceptDoubleQuoted; BOOL exceptEscaped; // The SetNth method is handy for setting a part of a delimited string. // For example: sb = CkStringBuilderW_Create(); CkStringBuilderW_Append(sb,L"red,blue,\"green,purple\",,yellow"); delimiterChar = L","; exceptDoubleQuoted = TRUE; exceptEscaped = TRUE; CkStringBuilderW_SetNth(sb,2,L"magenta",delimiterChar,exceptDoubleQuoted,exceptEscaped); // Prints "red,blue,magenta,,yellow" wprintf(L"%s\n",CkStringBuilderW_getAsString(sb)); CkStringBuilderW_SetNth(sb,3,L"orange",delimiterChar,exceptDoubleQuoted,exceptEscaped); // Prints "red,blue,magenta,orange,yellow" wprintf(L"%s\n",CkStringBuilderW_getAsString(sb)); // What happens if we start with an empty string? CkStringBuilderW_Clear(sb); CkStringBuilderW_SetNth(sb,2,L"apple",delimiterChar,exceptDoubleQuoted,exceptEscaped); // Prints ",,apple" wprintf(L"%s\n",CkStringBuilderW_getAsString(sb)); CkStringBuilderW_SetNth(sb,0,L"orange",delimiterChar,exceptDoubleQuoted,exceptEscaped); // Prints "orange,,apple" wprintf(L"%s\n",CkStringBuilderW_getAsString(sb)); CkStringBuilderW_SetNth(sb,1,L"banana",delimiterChar,exceptDoubleQuoted,exceptEscaped); // Prints "orange,banana,apple" wprintf(L"%s\n",CkStringBuilderW_getAsString(sb)); CkStringBuilderW_Dispose(sb); } |
© 2000-2025 Chilkat Software, Inc. All Rights Reserved.