Answers for "replace string in string with string java"

0

Java string replace

String a = "Cool";
a = a.replace("o","yy");
Posted by: Guest on June-07-2021
-1

string.replace in java

public static void main(String args[]){  
String s1="my name is khan 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 June-21-2021

Code answers related to "replace string in string with string java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language