mirror of
https://github.com/qgis/QGIS.git
synced 2025-04-16 00:03:12 -04:00
11 lines
527 B
Plaintext
11 lines
527 B
Plaintext
{
|
|
"function": "concat",
|
|
"description": "Concatenates several strings to one. NULL values are converted to empty strings.",
|
|
"variableLenArguments": true,
|
|
"arguments": [ {"arg":"string1", "syntaxOnly": true},
|
|
{"arg":"string2", "syntaxOnly": true},
|
|
{"arg":"string", "descOnly": true, "description":"a string value"}],
|
|
"examples": [ { "expression":"concat('a','b','c','d','e')", "returns":"'abcde'"},
|
|
{ "expression":"concat('The Wall', NULL)", "returns":"'The Wall'"}]
|
|
}
|