I have a string Saxon Securitie/Logo/horse-logo.jpg_1413458235818 in format "A/B/C"
I want the result as C by removing "A/B/" from the above string and get a result
String C = "horse-logo.jpg_1413458235818"
I have a string Saxon Securitie/Logo/horse-logo.jpg_1413458235818 in format "A/B/C"
I want the result as C by removing "A/B/" from the above string and get a result
String C = "horse-logo.jpg_1413458235818"
Try:
  String s = "Saxon Securitie/Logo/horse-logo.jpg_1413458235818";
  String c = s.substring(s.lastIndexOf("/") + 1);
  System.out.println(c);
 
    
    String filePath = "Saxon Securitie/Logo/horse-logo.jpg_1413458235818";
String fileName = new File(filePath).getName();
See https://meta.stackexchange.com/questions/66377/what-is-the-xy-problem
 
    
     
    
    You can use String.lastIndexOf to do that :
String path     = "Saxon Securitie/Logo/horse-logo.jpg_1413458235818";
int    index    = path.lastIndexOf("/");
String fileName = index == -1 ? null : path.substring(index + 1);
