本帖最后由 lpopbxjz 于 2024-8-10 11:04 编辑
唉.. 最近想写个安卓项目,没用按键 直接用的懒人,结果发现啥啥都没有,论坛上很多都找不到..这次项目用到的一些基础代码就发出来吧,希望懒人越来越好...
留下评论支持,谢谢,看着有评论也心情好哎,以便下次再次分享...
function 正则取指定个数数字(文本, 个数)
local matches = {}
for num in string.gmatch(文本, "%d+") do
table.insert(matches, num)
if #matches == 个数 then
break
end
end
for i, match in ipairs(matches) do
print(i, match)
if utf8.length(match)==个数 then
return match
end
end
return "没找到"
end
|