两种方式截取字符串

使用string.gmatch

local plan_id = "1,2,3,4,55,66"

local match = string.gmatch( plan_id,"%d+" )

local plan_ids = {}

for v in match do
  table.insert(plan_ids,v)
end
print(#plan_ids)
print(plan_ids[2])
6  2

使用string.sub

function split(str, split_char)
    local sub_str_tab = {};
    while (true) do
        local pos = string.find(str, split_char);
        if (not pos) then
            sub_str_tab[#sub_str_tab + 1] = str;
            break;
        end
        local sub_str = string.sub(str, 1, pos - 1);
        sub_str_tab[#sub_str_tab + 1] = sub_str;
        str = string.sub(str, pos + 1, #str);
    end

    return sub_str_tab;
end

local plan_id = 11
local plan_ids = split(plan_id,",")
if #(plan_ids) == 1 then
  print("t")
else
  print("f")
end

-- print(plan_ids[1])


local plan_id = "11,33,44,55,66,77"
local plan_ids = split(plan_id,",")
print(plan_ids[5])
t  66
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值