stringp object ⇒ generalized-boolean
stringp
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)