of     1   

CeaselessQuokka
#155150060Monday, February 02, 2015 1:28 AM GMT

How would I check for letters AND numbers? local a = [[ a,b,sdf,123,as,d2,d1 ]] local pat = "%a+" for i in a:gmatch(pat) do print(i) end Currently this will only return letters, but not numbers, how would I make it return both?
cntkillme
#155151925Monday, February 02, 2015 1:49 AM GMT

%w+
CeaselessQuokka
#155153476Monday, February 02, 2015 2:07 AM GMT

I love you.

    of     1