This article is tagged with:
How to remove characters from a string in lua
and lua
how to remove characters from a string in lua
-- removing characters
local str = "Hello World"
print(str:gsub("%o", "")
--> Hell Wrld