remove all non-alphanumeric characters from lua string

13.7k Views Asked by At

I checking string for a non-alphanumeric char.

if(str:match("%W")) then
  --make str alpha-numeric
end

How to remove all non-alphanumeric chars from string using lua?

2

There are 2 best solutions below

0
On

Use gsub (as suggested by Egor Skriptunoff):

str = str:gsub('%W','')
0
On

just make it like this you forgot +

if(str:match("%W+")) then --if it contain alpha
     number = str:match("%d+")
     alpha = str:match("%W+")
 end