Node:Appending Strings, Previous:Alphabetic Case Mapping, Up:Strings
The procedure string-append
appends several strings together to
form a longer result string.
string-append . args | Scheme Procedure |
scm_string_append (args) | C Function |
Return a newly allocated string whose characters form the
concatenation of the given strings, args.
(let ((h "hello ")) (string-append h "world")) => "hello world" |