Java String.indexOf(String str, int fromIndex)
Syntax
String.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 String.indexOf(String str, int fromIndex) method.
public class Main {
public static void main(String args[]) {
String s = "this is a test from java2s.com.";
/*from ww w.j a v a 2s . c o m*/
System.out.println(s);
System.out.println("indexOf(the, 10) = " + s.indexOf("the", 10));
}
}
The code above generates the following result.