Java Data Type Tutorial - Java StringBuffer.indexOf(String str, int fromIndex)








Syntax

StringBuffer.indexOf(String str, int fromIndex) has the following syntax.

public int indexOf(String str,  int fromIndex)

Example

In the following code shows how to use StringBuffer.indexOf(String str, int fromIndex) method.

public class Main {
//  ww w .j  av a2  s  . c  o  m
  public static void main(String[] arg) {

    StringBuffer buffer = new StringBuffer("from java2s.com");
    
    
    System.out.println(buffer.indexOf("ava",2));
  }

}

The code above generates the following result.