Simple lua string segmentation function string.split(str,splitchar) for s in (str):gmatch("(.-)"..splitchar) do print(s) end end.
確定! 回上一頁