The String replace() function allows you to replace all instances of a given character with another character. You can also use replace to replace substrings of a String with a different substring.
myString.replace(substring1, substring2)
myString: a variable of type Stringsubstring1: another variable of type Stringsubstring2: another variable of type StringNothing