SketchyLISP Reference |
Copyright (C) 2007 Nils M Holm |
<<[string-ci>=?] | [Index] | [string-ref]>> |
Conformance: R5RS Scheme
Purpose: Compute the length of a string.
Arguments:
X - string
Model:
(define (string-length x) (length (string->list x)))
Implementation:
; This function is a primitive function.
Example:
(string-length "Hello") => 5
See also:
string,
string-append,
string-ref,
append.
<<[string-ci>=?] | [Index] | [string-ref]>> |