concat( a, b, [CR-support c] )
This function returns the concatenation of the values a and b.
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 |
(optional) Controls 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. cl-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 |
Parameter b |
Parameter c |
Result |
Hell |
o_world |
nl-support |
Hello_World |
Hello\NL |
world |
nl-support |
Hello 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).