Contact: aviboots(AT)netvision.net.il
39,885 questions
51,811 answers
573 users
public class MyClass { public static void main(String args[]) { String str = "java c c++ php python"; str = str.substring(0, str.lastIndexOf(" php")); System.out.println(str); } } /* run: java c c++ */