Can anyone please explain what is java string replace all ? What is function? Where and how we use this? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
0

Can anyone please explain what is java string replace all ? What is function? Where and how we use this?

Java

2nd Aug 2022, 5:59 PM
Manohar Kaloni
1 Answer
+ 2
ie. it changes all "x" substrings to "*" String str = "2x2x2"; String result = str.replaceAll( "x", "*"); System.out.println( result ); //2*2*2 meaning of term function depends on the context generally it changes something to something other
3rd Aug 2022, 2:58 AM
zemiak