- string->list string #!optional start endprocedure
- list->string listprocedure
String->list returns a newly allocated list of the characters that make up the given string between start and end. List->string returns a newly allocated string formed from the characters in the list list, which must be a list of characters. String->list and list->string are inverses so far as equal? is concerned.