Messing around, and I just wanted to know, is there a way to get string.gmatch to also print numbers?
s = ("a b c d e 1 2 3 4") for w in string.gmatch(s, "%a+") do print(w) end
Thank you, so much! :D