15 lines
783 B
Plaintext
Raw Normal View History

{
"name": "concat",
"type": "function",
2020-07-02 01:46:48 +01:00
"groups": ["String"],
"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'"},
2015-09-20 13:50:21 +02:00
{ "expression":"concat('The Wall', NULL)", "returns":"'The Wall'"}]
}