Returns a string that is the concatenation of multiple strings
(strcat [string[string]...])
Arguments
A string.
Return Values
strcat returns a zero-length string.
A string. If no arguments are supplied,Examples
Command: (strcat "a" "bout")
"about"
Command: (strcat "a" "b" "c")
"abc"
Command: (strcat "a" "" "c")
"ac"
Command: (strcat)
""