5

我想将数字格式化为1,234or1,234,432123,456,789,你明白了。我尝试这样做如下:

function reformatint(i)
    local length = string.len(i)
    for v = 1, math.floor(length/3) do
        for k = 1, 3 do
            newint = string.sub(mystring, -k*v)
        end
        newint = ','..newint
    end
    return newint
end

如您所见,尝试失败,我的问题是我无法弄清楚错误是什么,因为我正在运行它的程序拒绝向我报告错误。

4

4 回答 4

11

这是一个考虑负数和小数部分的函数:

function format_int(number)

  local i, j, minus, int, fraction = tostring(number):find('([-]?)(%d+)([.]?%d*)')

  -- reverse the int-string and append a comma to all blocks of 3 digits
  int = int:reverse():gsub("(%d%d%d)", "%1,")

  -- reverse the int-string back remove an optional comma and put the 
  -- optional minus and fractional part back
  return minus .. int:reverse():gsub("^,", "") .. fraction
end

assert(format_int(1234)              == '1,234')
assert(format_int(1234567)           == '1,234,567')
assert(format_int(123456789)         == '123,456,789')
assert(format_int(123456789.1234)    == '123,456,789.1234')
assert(format_int(-123456789.)       == '-123,456,789')
assert(format_int(-123456789.1234)   == '-123,456,789.1234')
assert(format_int('-123456789.1234') == '-123,456,789.1234')

print('All tests passed!')
于 2012-06-12T08:20:47.517 回答
5

好吧,让我们从上到下。首先,它失败了,因为你有一个参考错误:

    ...
        for k = 1, 3 do
            newint = string.sub(mystring, -k*v) -- What is 'mystring'?
        end
    ...

很可能你想i在那里,而不是mystring

其次,虽然替换mystringi可以修复错误,但它仍然无法正常工作。

> =reformatint(100)
,100
> =reformatint(1)
,000

这显然是不对的。似乎您正在尝试做的是遍历字符串,并使用添加的逗号构建新字符串。但是有几个问题...

function reformatint(i)
    local length = string.len(i)
    for v = 1, math.floor(length/3) do
        for k = 1, 3 do -- What is this inner loop for?
            newint = string.sub(mystring, -k*v) -- This chops off the end of
                                                -- your string only
        end
        newint = ','..newint -- This will make your result have a ',' at
                             -- the beginning, no matter what
    end
    return newint
end

通过一些返工,您可以获得一个有效的功能。

function reformatint(integer)
    for i = 1, math.floor((string.len(integer)-1) / 3) do
        integer = string.sub(integer, 1, -3*i-i) ..
                  ',' ..
                  string.sub(integer, -3*i-i+1)
    end
    return integer
end

上面的功能似乎可以正常工作。然而,它相当复杂......可能想让它更具可读性。

作为旁注,快速谷歌搜索找到一个已经为此制作的功能:

function comma_value(amount)
  local formatted = amount
  while true do  
    formatted, k = string.gsub(formatted, "^(-?%d+)(%d%d%d)", '%1,%2')
    if (k==0) then
      break
    end
  end
  return formatted
end
于 2012-06-12T02:54:48.910 回答
2

您可以不使用循环:

function numWithCommas(n)
  return tostring(math.floor(n)):reverse():gsub("(%d%d%d)","%1,")
                                :gsub(",(%-?)$","%1"):reverse()
end

assert(numWithCommas(100000) == "100,000")
assert(numWithCommas(100) == "100")
assert(numWithCommas(-100000) == "-100,000")
assert(numWithCommas(10000000) == "10,000,000")
assert(numWithCommas(10000000.00) == "10,000,000")

需要第二个 gsub 以避免生成 -,100。

于 2012-06-12T05:17:06.397 回答
1

我记得在LÖVE 论坛上讨论过这个……让我去找找……

找到了

这将适用于正整数:

function reformatInt(i)
  return tostring(i):reverse():gsub("%d%d%d", "%1,"):reverse():gsub("^,", "")
end

在上面的链接中,您可以阅读有关实施的详细信息。

于 2012-06-12T21:38:36.290 回答