Do you mean something such as using, "string.gsub"?,
An example would be something such as,
StringVariable = "String"
print(string.gsub(StringVariable,"Strin","String"))
The first parameter is the string, the second is the part of the string you want to change, the third is what you want to change it with. |