mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-23 00:02:38 -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'"}]
|
|
}
|