Documentation Index

Fetch the complete documentation index at: https://docs.lobstersoftware.com/llms.txt

Use this file to discover all available pages before exploring further.

concat(a,b, [CR-support c])

Prev Next

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).