Next: , Previous: String Constructors, Up: Strings


21.4.4 List/String conversion

When processing strings, it is often convenient to first convert them into a list representation by using the procedure string->list, work with the resulting list, and then convert it back into a string. These procedures are useful for similar tasks.

— Scheme Procedure: string->list str [start [end]]
— C Function: scm_string_to_list (str, start, end) |1 |2 |0

Convert the string str into a list of characters.