stringp | Function |
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
(stringp object) ≡ (typep object 'string)