Lua 自定义函数string.split. function string.split(str, delimiter) if str==nil or str=='' or delimiter==nil then return nil end local result = {} for match ...
確定! 回上一頁