![]() |
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
(PowerBuilder) JSON Append String ArrayDemonstrates how to append an array of strings from a string table object. Note: This example uses the AppendStringTable method, which was introduced in Chilkat v9.5.0.67
integer li_rc oleobject loo_Json oleobject loo_St loo_Json = create oleobject // Use "Chilkat_9_5_0.JsonObject" for versions of Chilkat < 10.0.0 li_rc = loo_Json.ConnectToNewObject("Chilkat.JsonObject") if li_rc < 0 then destroy loo_Json MessageBox("Error","Connecting to COM object failed") return end if loo_Json.EmitCompact = 0 loo_Json.AppendString("abc","123") loo_St = create oleobject // Use "Chilkat_9_5_0.StringTable" for versions of Chilkat < 10.0.0 li_rc = loo_St.ConnectToNewObject("Chilkat.StringTable") loo_St.Append("a") loo_St.Append("b") loo_St.Append("c") loo_St.Append("d") loo_Json.AppendStringArray("strArray",loo_St) Write-Debug loo_Json.Emit() // Output: // { // "abc": "123", // "strArray": [ // "a", // "b", // "c", // "d" // ] // } destroy loo_Json destroy loo_St |
© 2000-2025 Chilkat Software, Inc. All Rights Reserved.