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 GetNthDemonstrates the GetNth method.
#include <C_CkStringBuilderW.h> void ChilkatSample(void) { HCkStringBuilderW sb; const wchar_t *delimiterChar; BOOL exceptDoubleQuoted; BOOL exceptEscaped; // The GetNth method is handy for getting parts from delimited strings. // For example: sb = CkStringBuilderW_Create(); CkStringBuilderW_Append(sb,L"red,blue,\"green,purple\",,yellow"); delimiterChar = L","; exceptDoubleQuoted = TRUE; exceptEscaped = TRUE; // Prints "[red]" wprintf(L"[%s]\n",CkStringBuilderW_getNth(sb,0,delimiterChar,exceptDoubleQuoted,exceptEscaped)); // Prints "[blue]" wprintf(L"[%s]\n",CkStringBuilderW_getNth(sb,1,delimiterChar,exceptDoubleQuoted,exceptEscaped)); // Prints "[green,purple]" wprintf(L"[%s]\n",CkStringBuilderW_getNth(sb,2,delimiterChar,exceptDoubleQuoted,exceptEscaped)); // Prints "[]" wprintf(L"[%s]\n",CkStringBuilderW_getNth(sb,3,delimiterChar,exceptDoubleQuoted,exceptEscaped)); // Prints "[yellow]" wprintf(L"[%s]\n",CkStringBuilderW_getNth(sb,4,delimiterChar,exceptDoubleQuoted,exceptEscaped)); // Prints "[]" wprintf(L"[%s]\n",CkStringBuilderW_getNth(sb,5,delimiterChar,exceptDoubleQuoted,exceptEscaped)); CkStringBuilderW_Dispose(sb); } |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.