1 2 3 4 5 6 7
local function splitw(str) local res = {} for s in str:gmatch("%S+") do table.insert(res,s) end return res end