mirror of
https://github.com/qgis/QGIS.git
synced 2025-02-25 00:58:06 -05:00
14 lines
332 B
Plaintext
14 lines
332 B
Plaintext
|
<h3>concat() function</h3>
|
||
|
Concatenates several strings to one.
|
||
|
|
||
|
<h4>Syntax</h4>
|
||
|
concat(<i>string<i>[,<i>string</i>...])
|
||
|
|
||
|
<h4>Arguments</h4>
|
||
|
<!-- List args for functions here-->
|
||
|
<i> string</i> → is string. a string.<br>
|
||
|
|
||
|
<h4>Example</h4>
|
||
|
<!-- Show example of function.-->
|
||
|
concat('a','b','c','d','e') → 'abcde'
|