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