Advertisements
Advertisements
Question
Write down the syntax to perform the following task:
To replace the word "old" with the word "new" in a given String st = "old is always old".
One Line Answer
Solution
String str = st.replace("old", "new");
shaalaa.com
Is there an error in this question or solution?