strcat()

Concatenates between 1 and 64 arguments.

Syntax

strcat(argument1, argument2 [, argument3 ... ])

Learn more about syntax conventions.

Parameters

Name Type Required Description
argument1 ... argumentN scalar ✔️ The expressions to concatenate.

Note

If the arguments aren't of string type, they'll be forcibly converted to string.

Returns

The arguments concatenated to a single string.

Examples

print str = strcat("hello", " ", "world")

Output

str
hello world