lua How to split string. Let's split a string by space: str = "green yellow blue" words = {} for w in string.gmatch(str, "[^ ]+") do table.insert(words, ...
確定! 回上一頁