Which of the following methods is used to replace all occurrences of a specified character in a string in Java?
A. replace()
B. replaceAll()
C. replaceChar()
D. replaceAllOccurrences()
Answer: Option A
Solution (By Examveda Team)
replace() is a method in Java used to replace all occurrences of a specified character or substring in a string with another character or substring.It takes two parameters: the character or substring to be replaced and the new character or substring.
replaceAll() is used for replacing all substrings that match a regular expression, which is different from replace().
replaceChar() and replaceAllOccurrences() are not valid methods in Java.
Join The Discussion
Comments (1)
Related Questions on Strings
In Java, which class is used to represent a sequence of characters as a string?
A. String
B. StringBuilder
C. StringSequence
D. StringArray
What is the correct way to create a new empty String object in Java?
A. String emptyString = "";
B. String emptyString = new String();
C. String emptyString = " ";
D. String emptyString = null;
E. Both A and B
Which of the following methods is used to compare two strings for equality in Java?
A. equals()
B. compareTo()
C. equalsIgnoreCase()
D. compare()
Correct answer for the given question should be replace() .