originalString.replace(oldChar, newChar)
ex.
String originalString = "This/is/my/string"; System.out.println(originalString.replace('/', '|'));Then the output will be "This|is|my|string"
Anyway how can we replace a character or number of characters(a substring) with another string. This can be done using the regex package in Java.
If we need to replace "my" with "your" we can do it in the following way.
import java.util.regex.*; String originalString = "This is my string"; Pattern pat = Pattern.compile("my"); Matcher mat = pat.matcher(originalString); System.out.println(mat.replaceAll("your")); mat.reset();The output will be "This is your string"