(strcat string1 [string2] ...)


Make one big string out of all these little strings.


This function joins together strings, an operation also known as concatenation.

Examples

Code Returns
(setq a "Jack and Jill") "Jack and Jill"
(setq b " went up the hill") "went up the hill"
(strcat a b ) "Jack and Jill went up the hill"
(setq rad (rtos 7.0))  
(strcat "The radius is " rad) "The radius is 7.0000"

Tell me about...

(setq symbol1 statement1 [symbol2 statement2] ...)

(strlen [string1] [string2] )

(substr string start [length])

LISP Compatibility

Programming Overview of LISP (LISt Processing) Language