mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-23 00:02:38 -05:00
28 lines
759 B
Plaintext
28 lines
759 B
Plaintext
{
|
|
"name": "||",
|
|
"type": "operator",
|
|
"groups": ["Operators"],
|
|
"description": "Joins two values together into a string.<br><br>If one of the values is NULL the result will be NULL. See the CONCAT function for a different behavior.",
|
|
"arguments": [{
|
|
"arg": "a",
|
|
"description": "value"
|
|
}, {
|
|
"arg": "b",
|
|
"description": "value"
|
|
}],
|
|
"examples": [{
|
|
"expression": "'Here' || ' and ' || 'there'",
|
|
"returns": "'Here and there'"
|
|
}, {
|
|
"expression": "'Nothing' || NULL",
|
|
"returns": "NULL"
|
|
}, {
|
|
"expression": "'Dia: ' || \"Diameter\"",
|
|
"returns": "'Dia: 25'"
|
|
}, {
|
|
"expression": "1 || 2",
|
|
"returns": "'12'"
|
|
}],
|
|
"tags": ["behavior", "different", "see", "concat", "null", "joins", "result", "values"]
|
|
}
|