Skip to main content
Version: 8.1

concat

This function is used by Ignition's Expression language.

Description​

Concatenates all of the strings passed in as arguments together. A null string passed as an argument will be evaluated as the word null. Rarely used, as the + operator does the same thing.

Syntax​

concat(string, [string, ...])

Parameters​

TypeParameterDescription
StringstringAny number of string values to concatenate together.

Results​

String - A string that is all of the strings provided concatenated together.

Examples​

Code Snippet
concat("The answer is: ", "42") //returns "The answer is: 42"