Components All New MacOS Windows Linux iOS
Examples Mac & Win Server Client Guides Statistic FMM Blog Deprecated Old

JSON.GetArrayPathItems

Queries value from JSON path in array of objects.

Component Version macOS Windows Linux Server iOS SDK
JSON 7.1 ✅ Yes ✅ Yes ✅ Yes ✅ Yes ✅ Yes
MBS( "JSON.GetArrayPathItems"; json; Path { ; AsValue } )   More

Parameters

Parameter Description Example Flags
json A JSON text or reference.
If that is not an array, the function returns an empty result.
"[{\"first\":\"Christian\",\"last\":\"Schmitz\",\"city\":\"Nickenich\"}]"
Path The path through the json hierarchy as list.
For object, pass name of item to choose. For array pass index.
"last"
AsValue Pass 1 to return as value, e.g. text or number.
Pass 0 (or nothing) to return as JSON.
Optional

Result

Returns value or error.

Description

Queries value from JSON path in array of objects.
The path describes the way through the hierarchy to find the JSON node to return.
Result can be JSON or the value.

Examples

Query all test values in objects in array:

MBS("JSON.GetArrayPathItems"; JSON Test::JSON; "test")

Lookup items in array:

MBS( "JSON.GetArrayPathItems"; "[{\"first\":\"Christian\",\"last\":\"Schmitz\",\"city\":\"Nickenich\"}, {\"first\":\"Peter\",\"last\":\"Miller\",\"city\":\"New York\"}]"; "first"; 0 )

Example result:
"Christian"
"Peter"

Lookup item values in array:

MBS( "JSON.GetArrayPathItems"; "[{\"first\":\"Christian\",\"last\":\"Schmitz\",\"city\":\"Nickenich\"}, {\"first\":\"Peter\",\"last\":\"Miller\",\"city\":\"New York\"}]"; "first"; 1 )

Example result:
Christian
Peter

See also

Release notes

Blog Entries

This function checks for a license.

Created 27th January 2017, last changed 9th November 2021


JSON.GetArrayItemsAsQuickList - JSON.GetArraySize