Skip to content

Commit

Permalink
fix nim-lang#18702(fix parseutils.parseFloat) (nim-lang#18703) [bac…
Browse files Browse the repository at this point in the history
…kport:1.0]

* fix nim-lang#18702
* Apply suggestions from code review
  • Loading branch information
ringabout authored and PMunch committed Mar 28, 2022
1 parent c0237a2 commit fd371b7
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 6 deletions.
9 changes: 5 additions & 4 deletions lib/system/strmantle.nim
Original file line number Diff line number Diff line change
Expand Up @@ -211,15 +211,16 @@ proc nimParseBiggestFloat(s: string, number: var BiggestFloat,
var ti = 0
let maxlen = t.high - "e+000".len # reserve enough space for exponent

result = i - start
let endPos = i
result = endPos - start
i = start
# re-parse without error checking, any error should be handled by the code above.
if i < s.len and s[i] == '.': i.inc
while i < s.len and s[i] in {'0'..'9','+','-'}:
if i < endPos and s[i] == '.': i.inc
while i < endPos and s[i] in {'0'..'9','+','-'}:
if ti < maxlen:
t[ti] = s[i]; inc(ti)
inc(i)
while i < s.len and s[i] in {'.', '_'}: # skip underscore and decimal point
while i < endPos and s[i] in {'.', '_'}: # skip underscore and decimal point
inc(i)

# insert exponent
Expand Down
13 changes: 11 additions & 2 deletions tests/stdlib/tparseutils.nim
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import parseutils
import sequtils
import std/[parseutils, sequtils, sugar]


let input = "$test{} $this is ${an{ example}} "
let expected = @[(ikVar, "test"), (ikStr, "{} "), (ikVar, "this"),
Expand Down Expand Up @@ -41,3 +41,12 @@ doAssert value == 1_000_000
var i64Value: int64
discard parseBiggestInt("9223372036854775807", i64Value)
doAssert i64Value == 9223372036854775807

block:
var f: float
let res = collect:
for x in ["9.123456789012345+","11.123456789012345+","9.123456789012345-","8.123456789012345+","9.12345678901234-","9.123456789012345"]:
(parseFloat(x, f, 0), $f)
doAssert res == @[(17, "9.123456789012344"), (18, "11.123456789012344"),
(17, "9.123456789012344"), (17, "8.123456789012344"),
(16, "9.12345678901234"), (17, "9.123456789012344")]

0 comments on commit fd371b7

Please sign in to comment.