how to replace a single character in a string in java code example
Example 1: how to change single character of a string in java
String s1 = "This is a String";
String s2 = s1.substring(0, 8) + "o" + s1.substring(9);
System.out.println(s2);
Example 2: string replace java
public static void main(String args[]){
String s1="my name is khan my name is java";
String replaceString=s1.replace("is","was");
System.out.println(replaceString);
}}
Example 3: java replace character in string
String s = "new String";
String replaced = s.replace("new","Test");
^ ^
old new char
Example 4: java replaceall single character
.replaceAll("(?<!\\S)[^ ](?!\\S)", " ").trim()