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 {
// w w w .ja v a2s.c om
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.