I want to replace these letters:
local words = {"v", "s ", "#@#", "s", "รง", "b", "mp", "t"}
When they were in a sentence they would be replaced, or it could be a table like that too:
local words = {
["v"] = "d",
["s"] = "k"
}
Assuming I have the phrase Insira o texto
, the desired result would be infira o fexfo
, replacing s
and t
with f
.