strcat()
Concatenates between 1 and 64 arguments.
Syntax
strcat(
argument1,
argument2 [,
argument3 ... ])
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 |