Next: String Constructors, Previous: String Syntax, Up: Strings
The following procedures can be used to check whether a given string fulfills some specified property.
Return #t iff obj is a string, else #f.
#t
#f
Return #t if str's length is zero, and #f otherwise. (string-null? "") ⇒ #t (string-null? "wow") ⇒ #f
Return #t if str's length is zero, and #f otherwise.
(string-null? "") ⇒ #t (string-null? "wow") ⇒ #f