Hello, I have a problem with gsub, could someone explain to me what exactly it does, please?
a = "one string"
b = string.gsub(a, "one", "another") -- change string parts
print(a) --> one string
print(b) --> another string