On this page
HTTP & JSON jsonArray

$jsonArray[]

Creates a JSON array from a delimited string and stores it under the specified key in the current JSON object. Splits the value of the key by the separator and replaces it with an array.

Syntax
$jsonArray[key;separator?]

$jsonArray converts a delimited string value into a JSON array by splitting on the given separator. This is particularly useful when working with data that arrives as delimited text (CSV lines, path segments, tagged values) and needs to be manipulated as an array. The key must already exist and contain a string value.