-
Notifications
You must be signed in to change notification settings - Fork 0
Strings
Amitai Erfanian edited this page Jan 23, 2021
·
8 revisions
(string-alphabetic? [string]) -> boolean
Determines whether all ’letters’ in the string are alphabetic.
(string-alphabetic? "123")
#false(string-alphabetic? "abc")
#true
(string-append [string] [string] [string] ...) -> string
Concatenates the characters of several strings.
(string-append "hello" " " "world" " " "good bye")
"hello world good bye"
(string-length [string]) → natural
Determines the length of a string.
(string-length "hello world")
11