Next: make-string, Previous: string=, Up: Strings Dictionary
stringp
object ⇒ generalized-boolean
object—an object.
generalized-boolean—a generalized boolean.
Returns true if object is of type string; otherwise, returns false.
(stringp "aaaaaa") ⇒ true (stringp #\a) ⇒ false
typep , string (type)
(stringp object) ≡ (typep object 'string)