Qwekkx 好耶!学到用offset了!提醒一下大家偏移量编号是从0开始的【废话
有个报错,假如歌名中包含#,offset会取不到值,attempt to concatenate a nil value (local 'offset')
我指定了搜索位置必须在歌名后匹配#+一个数字的格式,这样拆分字符串时会精准些(?)仅供参考【心虚
local offsetstring = string.match(rest, "#(%d*)",#rest - 1)
local offset
local isOffset = 0
if (offsetstring ~= nil) then
--存在偏移
offset = tonumber(offsetstring)
rest = string.sub(rest, 1,#rest-2)
isOffset = 1
else
offset = 0
end