local function split(str, d) --str是需要查分的对象 d是分界符local lst = { } local n = string.len(str)--长度local start = 1 while start <= n do local i ...
確定! 回上一頁