replace a char at an index in string java code example
Example 1: java string replace character at position
String str = in.nextLine(); //Original String
char cr = in.next().charAt(0); // character to replace
int index = in.nextInt(); // Index where replaced
str = str.substring(0, index) + cr + str.substring(index + 1);// modified string
Example 2: java replace character in string
String s = "new String";
String replaced = s.replace("new","Test");
^ ^
old new char
Example 3: replace character in string java
String str = "..............................";
int index = 5;
char ch = '|';
StringBuilder string = new StringBuilder(str);
string.setCharAt(index, ch);
System.out.println(string);