%JSON_ArrayRemoveItem function


Function

Remove item at given index from JSON array.

Declaration
%JSON_ArrayRemoveItem(
    INT in handle, 
    INT in index
 )
Parameters
handleHandle to JSON array.
indexIndex
Return value

None

Description

Function remove item at given index from JSON array

Exception is thrown if handle to JSON array is invalid or index is out of range.

Example
 INT _arr
 _arr := %JSON_ArrayFromString('[[1,2,3],[4,5,6]]')
 
 %JSON_ArrayRemoveItem(_arr, 1)

 %JSON_FreeArrayHandle(_arr)
Napíšte komentár