next up previous

12.3.1 String Concatenation

The str-cat function will concatenates its arguments into a single string.

Syntax

(str-cat <expression>*)

Each <expression> should be one of the following types: symbol, string, float, integer, or instancename.

Example

CLIPS> (str-cat "foo" bar)
"foobar"
CLIPS>


next up previous