concat

Last update: 2023-01-23
  • Created for:
  • Experienced
    Developer

Concatenates two string parameters or a list of strings.

Category

String

Function syntax

concat(<parameters>)

Parameters

Parameter Type
List listString
string string

Signature and returned type

concat(<string>,<string>)

concat(<listString>)

Returns an string.

Example

concat("Hello","World")

Returns “HelloWorld”.

concat(["Hello"," ","World"])

Returns “Hello World”.

On this page