Top  | Previous | Next

Strings / concat

concat(string1, string2, ...)

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.

 

concat("The answer is: ""42")

... returns "The answer is: 42"