Posts

Showing posts from July 18, 2010

What is different type of lastIndexOf method in String java example

What is different type of lastIndexOf() method in String java example public class Test {         public static void main(String[] args) {                    String st = new String("test string test here");                         int index = st.lastIndexOf((int)'t');             System.out.println(index);                         index = st.lastIndexOf((int)'t', 5);             System.out.println(index);                         index = st.lastIndexOf("test");             System.out.println(index);                         index = st.lastIndexOf("test", 10);             System.out.println(index);         } }

Recent Post

Recent Posts Widget