mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-22 00:06:12 -05:00
19 lines
470 B
Plaintext
19 lines
470 B
Plaintext
{
|
|
"name": "array_count",
|
|
"type": "function",
|
|
"groups": ["Arrays"],
|
|
"description": "Counts the number of occurrences of a given value in an array.",
|
|
"arguments": [{
|
|
"arg": "array",
|
|
"description": "an array"
|
|
}, {
|
|
"arg": "value",
|
|
"description": "the value to count"
|
|
}],
|
|
"examples": [{
|
|
"expression": "array_count(array('a', 'b', 'c', 'b'), 'b')",
|
|
"returns": "2"
|
|
}],
|
|
"tags": ["number", "array", "occurrences", "given", "counts"]
|
|
}
|