string-length
-- r7rs
Definition procedure
;
string-length
(from vonuvoli
);Procedure variants:
((string-empty) -> (range-length-zero))
string-empty
;range-length-zero
;((string-not-empty) -> (range-length-not-zero))
string-not-empty
;range-length-not-zero
;scheme:base
-- (scheme base)
;scheme
-- (scheme)
;(string-length string)
Returns the number of characters in the given
string
.
The text herein was sourced and adapted as described in the "R7RS attribution of various text snippets" appendix.