Working with Strings in Lisp
(setq s "This is a real live string.")
; note that the first position is 0.
; Testing character objects:
(alphanumericp (elt s 7)) ; => NIL
; MUST BE EITHER ALPHA-CHAR-P or
(digit-char-p #\9) ; => 9, i.e., True.
”THIS IS A REAL LIVE STRING.”