Answers for "java find number of occurrences in string and replace with string representation"

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

Code answers related to "java find number of occurrences in string and replace with string representation"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language