how to replace parts of a word, e.g replacing 'ing' in 'replacing' with something else. or from a list
wordparts = {
tion = "",
ing = "",
th = "",
}
I tried string.gsub but could only match a whole word rather than parts
wordparts = {
tion = "",
ing = "",
th = "",
}
I tried string.gsub but could only match a whole word rather than parts