concat(a,b,c,d,e,f,g,h, [CR-support i])
This function returns the concatenation of the values a to h.
Note: Please note that this function also allows "hidden" values as parameters and treats them like 'real' values. See the explanations for the Empty Flag.
Parameters
|
Parameter |
Description |
|
a |
Value. |
|
b |
Value. |
|
c |
Value. |
|
d |
Value. |
|
e |
Value. |
|
f |
Value. |
|
g |
Value. |
|
h |
Value. |
|
i |
(optional) Controls the placeholder behaviour. Default: nl-support. nl-support - The placeholder \TAB is converted to \t. The placeholder \NL is converted to \r\n. The placeholder \CR is not converted. cr-support - The placeholder \TAB is converted to \t. The placeholder \NL is converted to \n. The placeholder \CR is changed to \n. none - The placeholders \TAB, \NL and \CR are not converted. |
Examples
|
Parameter a |
b |
c |
d |
e |
f |
g |
h |
i |
Result |
|
Hell |
o world |
|
|
|
|
|
|
nl-support |
Hello world |
|
H |
e |
l |
l |
o |
|
world |
! |
nl-support |
Hello world! |
|
Hello\NL |
beautiful |
_world |
|
|
|
|
|
nl-support |
Hello beautiful_world |
Note: If you are curious, open a result file in a file editor that can display control characters (for example, Notepad ++ or the internal editor).