concat
stringConcatenates multiple strings together
Syntax
concat(strings...) Parameters
strings (string) One or more strings to concatenate
Returns
string Combined string from all inputs
Examples
Input:
concat("Hello", " ", "World") Output:
"Hello World" Input:
concat("a", "b", "c") Output:
"abc" The concat() function concatenates multiple strings into a single string. Unlike join(), it doesn’t use a separator between the strings.
Usage
Use concat() when you need to combine multiple string values into a single string without any delimiter between them.