strcat()

Learn how to use the strcat() function to concatenate between 1 and 64 arguments.

Concatenates between 1 and 64 arguments.

Syntax

strcat(argument1, argument2 [, argument3 … ])

Parameters

NameTypeRequiredDescription
argument1argumentNscalar✔️The expressions to concatenate.

Returns

The arguments concatenated to a single string.

Examples

Concatenated string

The following example uses the strcat() function to concatenate the strings provided to form the string, “hello world.” The results are assigned to the variable str.

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

Output

str
hello world

Concatenated multi-line string

The following example uses the strcat() function to create a concatenated multi-line string which is saved to the variable, MultiLineString. It uses the newline character to break the string into new lines.

print MultiLineString = strcat("Line 1\n", "Line 2\n", "Line 3")

Output

The results show the expanded row view with the multiline string.

MultiLineString
1. “MultiLineString”: Line 1
2. Line 2
3. Line 3