Lua string to int

后端 未结 12 1364
礼貌的吻别
礼貌的吻别 2020-12-23 08:39

How can I convert a string to an integer in Lua?

I have a string like this:

a = \"10\"

I would like it to be converted to 10, the n

12条回答
  •  忘掉有多难
    2020-12-23 09:17

    All numbers in Lua are floats (edit: Lua 5.2 or less). If you truly want to convert to an "int" (or at least replicate this behavior), you can do this:

    local function ToInteger(number)
        return math.floor(tonumber(number) or error("Could not cast '" .. tostring(number) .. "' to number.'"))
    end
    

    In which case you explicitly convert the string (or really, whatever it is) into a number, and then truncate the number like an (int) cast would do in Java.

    Edit: This still works in Lua 5.3, even thought Lua 5.3 has real integers, as math.floor() returns an integer, whereas an operator such as number // 1 will still return a float if number is a float.

提交回复
热议问题