I believe that the equivalent in Lua is: ```lua local newString = string.gsub(oldString, "a", "b") ``` Edit - It's pointed out below that something other than `gsub` would need to be used.
I believe that the equivalent in Lua is:
Edit - It's pointed out below that something other than
gsubwould need to be used.