1//java,remove selected value from string value,2021/09/23
2
3String strValue="Text what you want remove hello world";
4strValue.replace("Text what you want remove","text to replace");
5System.out.println(strValue);
6 //after replace strValue = "text to replace hello world"