Contact: aviboots(AT)netvision.net.il
40,011 questions
51,958 answers
573 users
public class MyClass { public static void main(String args[]) { String s = "java c++ php python c#"; String word = s.substring(s.lastIndexOf(" ") + 1); System.out.println(word); } } /* run: c# */
public class MyClass { public static void main(String args[]) { String s = "java c++ php python c#"; String[] arr = s.split(" "); String word = arr[arr.length - 1]; System.out.println(word); } } /* run: c# */