Next: String Modification, Previous: List/String Conversion, Up: Strings
Portions of strings can be extracted by these procedures.
string-ref delivers individual characters whereas
substring can be used to extract substrings from longer strings.
Return the number of characters in string.
Return character k of str using zero-origin indexing. k must be a valid index of str.
Return a freshly allocated copy of the string str.
Return a newly allocated string formed from the characters of string str beginning with index start (inclusive) and ending with index end (exclusive).
Both start and end may be a negative number n, in which case they refer to the index −n counted from the end of the string.