3
I want to replace these letters:
local words = {"v", "s ", "#@#", "s", "รง", "b", "mp", "t"}
When they had in a sentence they would be replaced, or it could be a table like this too:
local words = {
["v"] = "d",
["s"] = "k"
}
Supposing I have the phrase Insira o texto
, the desired result would be infira o fexfo
, replacing the s
and t
for f
.
You can edit the question and set an example of what you want to do?
– stderr
Let’s say this is the text : "Insert the text", it would return that "infira the fexfo"
– Joao Gabriel
What would that be in?
– Pedro Luzio