substring

(substring string start end)
returns a new string that is a copy of string beginning with the character numbered start and ending just before end.

0 start end length(string)

The length of the string that is returned is (end - start).


> (substring "computer" 3 6)
"put"

Contents    Page-10    Prev    Next    Page+10    Index