Maxima Function
sconcat (arg_1, arg_2, ...)
Concatenates its arguments into a string.
Unlike concat
, the arguments do not need to be atoms.
The result is a Lisp string.
(%i1) sconcat ("xx[", 3, "]:", expand ((x+y)^3)); (%o1) xx[3]:y^3+3*x*y^2+3*x^2*y+x^3