Mega Code Archive

 
Categories / Java / Development Class
 

StringBuffer indexOf method

class IndexOfDemo {   public static void main(String args[]) {     StringBuffer sb = new StringBuffer("one two one");     int i;         i = sb.indexOf("one");     System.out.println("First index: " + i);         i = sb.lastIndexOf("one");     System.out.println("Last index: " + i);   } }