Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVA

remove selected text from string value android java

//java,remove selected value from string value,2021/09/23

String strValue="Text what you want remove hello world";
strValue.replace("Text what you want remove","text to replace");
System.out.println(strValue);
	//after replace strValue = "text to replace hello world"
 
PREVIOUS NEXT
Tagged: #remove #selected #text #string #android #java
ADD COMMENT
Topic
Name
4+5 =