用于(string->number "#e6119726089.12814713")
准确解析数字。这至少适用于 Racket 和 Guile。但是,它可能无法在其他 Scheme 实现上正常工作;他们可以自由地首先解析为不精确,然后进行转换。
string->exact
这是 OP 要求的功能的可移植实现。我已经使用一系列输入手动测试了它,但您应该自己进行测试以确保它符合您的需求:
(define (string->exact str)
(define zero (char->integer #\0))
(let loop ((result #f)
(factor 1)
(seen-dot? #f)
(digits (string->list str)))
(if (null? digits)
(and result (/ result factor))
(let ((cur (car digits))
(next (cdr digits)))
(cond ((and (not result) (not seen-dot?) (char=? cur #\-))
(loop result (- factor) seen-dot? next))
((and (not seen-dot?) (char=? cur #\.))
(loop result factor #t next))
((char<=? #\0 cur #\9)
(loop (+ (* (or result 0) 10) (- (char->integer cur) zero))
(if seen-dot? (* factor 10) factor)
seen-dot? next))
(else #f))))))