strcat()

Concatenates between 1 and 64 arguments.

Syntax

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

Parameters

NameTypeRequiredDescription
argument1 ... argumentNscalarThe 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