Login | Sign Up
 





 
AutoLISP Function Detail
Name: strcat

Syntax:
(strcat str1 str2 ...)

Description:
Concatenates all the string values supplied into one long string.

Example(s):
(setq val1 "Hello")
(setq val2 "World!")
(strcat val1 " " val2)
"Hello World!"