Question: takes a String as a parameter and returns an int. The return value is the length of the input String after removing each instance of
takes a String as a parameter and returns an int. The return value is the length of the input String after removing each instance of "m", "o", and "j". Hint: If the second argument of the replace method is "" the matching characters will be removed (Replaced with nothing) See (https://docs.oracle.com/javase/8/docs/api/java/lang/String.html#method.summary) for a complete list of methods contained in the String class. You may call any of these methods in your method
the code i have so far..
2 public class www 4 6 public static String q5(String z) f String equal=z; String result-equal.replace("moj",""); 7 int length-result.lengthO; return length 10 public static void main(String args) String returnq5-q5C"moj"); 13 14 System.out.println(returnq5); 15 16 17
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
