constructor accepts thousands separator in string

This commit is contained in:
Reza Behzadan 2020-05-16 18:41:42 +04:30
parent 658743f89b
commit 0e6df8c5e7

View File

@ -27,7 +27,7 @@ local function num2tab(n)
end
local function str2tab(s)
local s = string.match(s, "^[+-]?%d+$") or "0"
local s = s:gsub("[ ,]", ""):match("^[+-]?%d+$") or "0"
local t = {sign=1}
local i = #s
local j = 1