一、Lua 判断是字符还是数字
local t = type(x);
if t == "number" then
-- 是数字
else if t == "string" then
-- 是字符串
end
-- 如果带判断是一个字符串,要判断是否可以转成数字, 则
local n = tonumber(x);
if n then
-- n就是得到数字
else
-- 转数字失败,不是数字, 这时n == nil
end
二、Lua判断数字
判断显式
type可以判断已经转换的类型,但是会区分字符串,因为它看的是原始类型。
经验
1.判断可否转换
而直接用转换来测试可以判断是否能够转成那个类型,也就是能否是那个类型的字符串模式。
新闻热点
疑难解答