Answers for "replace a single word in string in java"

2

replace all occurrences of a character in a string java

String phrase = "An_Apple_A_Day_Keeps_The_Doctor_Away";
System.out.println(phrase.replaceAll("_", " ");
// prints 'An Apple A Day Keeps The Doctor Away'
Posted by: Guest on August-03-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 a single word in string in java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language