JSON_ArrayToString
%JSON_ArrayToString function
Function
Gets the text representation of the JSON array.
Declaration
TEXT %JSON_ArrayToString(
INT in handle,
BOOL in pretty
)Parameters
handle | Handle to JSON array. |
pretty | Multi-line formatting of output |
Return value
None
Description
Function gets the text representation of the JSON array.
Exception is thrown if a handle to the JSON array is invalid.
Example
INT _arr
_arr := %JSON_CreateArray()
%JSON_ArrayAppendValue(_arr, "Will Smith")
%JSON_ArrayAppendValue(_arr, "John Wick")
TEXT _txt
_txt := %JSON_ArrayToString(_arr)
%JSON_FreeArrayHandle(_arr)