2 lines
127 B
Common Lisp
2 lines
127 B
Common Lisp
(defun numeric-string-p (string)
|
|
(ignore-errors (parse-number:parse-number string))) ; parse failed, return false (nil)
|