Chilkat HOME .NET Core C# Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi ActiveX Delphi DLL Go Java Lianja Mono C# Node.js Objective-C PHP ActiveX PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(Unicode C++) StringBuilder SetNthDemonstrates the SetNth method.
#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()); } |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.