Hi public String substring(int beginIndex) public String substring(int beginIndex, int endIndex) Here are two Java substring methods under TOS. For example, row1.value.substring(1,25) Regards, Pedro
String Str1 = new String("http://www.mydomain-x.com/f/r/y/w/image20000.jpg");
System.out.print("Found Index :" ); System.out.println(Str1.lastIndexOf("/")); int beginIndex1 = Str1.lastIndexOf("/")+1;
Str1 = Str1.substring(beginIndex1); System.out.println(Str1); results : Found Index :31 image1.jpg Found Index :33 image20000.jpg It is an idea and you can adapt and optimize it. Best regards