How to swap "," to "." in string?

Hi,
My script is taking input from player via text box and before sending it to the server I want to swap all commas to dots because later the string is converted to number so it need to be dot instead of comma which is very ofter typed by users. For example:

Before conversion: “13,25”
After conversion: “13.25”

local Str = "12,25"

local FinishedString = string.gsub(Str, ",", ".")

print(FinishedString) -->> 12.25
1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.