Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVA

extract substring in string java

int start = fullTitle.indexOf("GE3002");
int stop = fullTitle.indexOf(".01_01_01");
String res = fullTitle.substring(start, stop);
		
return res;
 
PREVIOUS NEXT
Tagged: #extract #substring #string #java
ADD COMMENT
Topic
Name
5+3 =