如果要在Lua中拆分字符串,则应尝试使用string.gmatch()或string.sub()方法。 ... function string:split(pat) pat = pat or '%s+' local st, g = 1, ...
確定! 回上一頁