Mega Code Archive

 
Categories / Java Tutorial / Development
 

Specifying the index position in the buffer where the search is to start

public class MainClass {   public static void main(String[] arg) {     StringBuffer phrase = new StringBuffer("one two three four");     int position = phrase.lastIndexOf("three", 6);     System.out.println(position);   } } -1