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