mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-24 00:47:57 -05:00
9 lines
347 B
Plaintext
9 lines
347 B
Plaintext
|
{
|
||
|
"name": "array_get",
|
||
|
"type": "function",
|
||
|
"description": "Returns the Nth value (0 for the first one) of an array.",
|
||
|
"arguments": [ {"arg":"array","description":"an array"},
|
||
|
{"arg":"index","description":"the index to get (0 based)"}],
|
||
|
"examples": [ { "expression":"array_get(array('a','b','c'),1)", "returns":"'b'"}]
|
||
|
}
|