Next: , Previous: , Up: iklib strings   [Index]


6.27.2 Constructing new strings

Function: string-copy! src.str src.start dst.str dst.start count

Copy count characters from src.str starting at src.start (inclusive) to dst.str starting at dst.start. Return unspecified values.

Function: string-concatenate strs

Concatenate the list of strings strs and return the resulting string. It is an error if the sum of the string lengths is not in the range of the maximum string length.

Function: string-reverse-and-concatenate strs

Reverse the list of strings strs, concatenate them and return the resulting string. It is an error if the sum of the string lengths is not in the range of the maximum string length.