Weird strings
Deleted UserLook at this function
1
2
3
4
5
6
7
8
2
3
4
5
6
7
8
function totable(t,match) local cmd = {} if not match then match = "[^%s]+" end for word in string.gmatch(t, match) do table.insert(cmd, word) end return cmd end
the part:
1
match = "[^%s]+"
What the heck that string suppose to mean? Can you tell how do I call it, and where I can find tutorial about it?