Answers for "java how to replace specific string in text gile in java"

1

how to replace in java

String s1 = "my name is khan and my name is java";
String replaceString = s1.replace("is","was");
//replaces all occurrences of "is" to "was"
System.out.println(replaceString);
Posted by: Guest on February-21-2020

Code answers related to "java how to replace specific string in text gile in java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language