Contact: aviboots(AT)netvision.net.il
40,769 questions
53,151 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++ */