cara menghapus karakter dari string di lua

-- removing characters

local str = "Hello World"

print(str:gsub("%o", "")

--> Hell Wrld
Jonesloto