Skip to main content

Concat

Concat Function

Concatenates the given list of strings using the specified delimiter

Syntax

Concat(scalar Delimiter, scalar string1, string2....)

Arguments

ArgumentDescription
scalar DelimiterCharacter to be used to separate text values (, ; : and other values as required)
scalar List of stringsscalar variable number of strings to be concatenated

Examples:

Concat(",", "Tom", "Cruise")

Concatenates Tom and Cruise to form "Tom,Cruise"