int pos = 0; //Arbitrary position, can be any number "String".substring(pos, pos+1);
int start = fullTitle.indexOf("GE3002"); int stop = fullTitle.indexOf(".01_01_01"); String res = fullTitle.substring(start, stop); return res;