mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-24 00:47:57 -05:00
14 lines
759 B
Plaintext
14 lines
759 B
Plaintext
{
|
|
"name": "concat",
|
|
"type": "function",
|
|
"description": "Concatenates several strings to one. NULL values are converted to empty strings. Other values (like numbers) are converted to strings.",
|
|
"variableLenArguments": true,
|
|
"arguments": [ {"arg":"string1", "syntaxOnly": true},
|
|
{"arg":"string2", "syntaxOnly": true},
|
|
{"arg":"string", "descOnly": true, "description":"a string value"}],
|
|
"examples": [ { "expression":"concat('sun', 'set')", "returns":"'sunset'"},
|
|
{ "expression":"concat('a','b','c','d','e')", "returns":"'abcde'"},
|
|
{ "expression":"concat('Anno ', 1984)", "returns":"'Anno 1984'"},
|
|
{ "expression":"concat('The Wall', NULL)", "returns":"'The Wall'"}]
|
|
}
|