Create JSON Array (ja)
Less than 1 minuteBuiltin CommandsList / Array Editing
ja
)
Create JSON Array (A sophisticated yet simply way to build a JSON array
Description
Murex has a pretty sophisticated builtin for generating JSON arrays. It works a little bit like Bash's {1..9}
syntax but includes a few additional nifty features.
Please note that while this builtin is not marked for deprecation, it has been superseded by the %[]
tokens. (read more)
Usage
ja [start..end] -> <stdout>
ja [start..end.base] -> <stdout>
ja [start..end,start..end] -> <stdout>
ja [start..end][start..end] -> <stdout>
Examples
» ja [1..5]
[
"1",
"2",
"3",
"4",
"5"
]
» ja [Monday..Sunday]
[
"Monday",
"Tuesday",
"Wednesday",
"Thursday",
"Friday",
"Saturday",
"Sunday"
]
Please note that as per the first example, all arrays generated by ja
are arrays of strings - even if you're command is ranging over integers.
Detail
Please read the documentation on a
for a more detailed breakdown on of ja
's supported features.
See Also
- Count (
count
): Count items in a map, list or array - Create New Array (
ta
): A sophisticated yet simple way to build an array of a user defined data-type - Filter By Range
[ ..Range ]
: Outputs a ranged subset of data from stdin - Get Item (
[ Index ]
): Outputs an element from an array, map or table - Get Nested Element (
[[ Element ]]
): Outputs an element from a nested structure - Reverse Array (
mtac
): Reverse the order of an array - Stream New List (
a
): A sophisticated yet simple way to stream an array or list (mkarray) %[]
Array Builder: Quickly generate arraysjson
: JavaScript Object Notation (JSON)
This document was generated from builtins/core/mkarray/array_doc.yaml.