replace char in string java code example
Example 1: 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 2: java replace character
String larry = "Larry is # years old";
String newString = larry.replace("#", "8");
Example 3: java replace character in string
String s = "new String";
String replaced = s.replace("new","Test");
^ ^
old new char
Example 4: 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);
Example 5: how to replace a character with another character in a string in java
public class JavaExample{
public static void main(String args[]){
String str = new String("Site is BeginnersBook.com");
System.out.print("String after replacing com with net :" );
System.out.println(str.replaceFirst("com", "net"));
System.out.print("String after replacing Site name:" );
System.out.println(str.replaceFirst("Beginners(.*)", "XYZ.com"));
}
}