constructor accepts thousands separator in string
This commit is contained in:
parent
658743f89b
commit
0e6df8c5e7
@ -27,7 +27,7 @@ local function num2tab(n)
|
|||||||
end
|
end
|
||||||
|
|
||||||
local function str2tab(s)
|
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 t = {sign=1}
|
||||||
local i = #s
|
local i = #s
|
||||||
local j = 1
|
local j = 1
|
||||||
|
Loading…
Reference in New Issue
Block a user