Java String.indexOf(int ch, int fromIndex)
Syntax
String.indexOf(int ch, int fromIndex) has the following syntax.
public int indexOf(int ch, int fromIndex)
Example
In the following code shows how to use String.indexOf(int ch, int fromIndex) method.
public class Main {
public static void main(String args[]) {
String s = "this is a test from java2s.com.";
// ww w .j a v a 2 s .com
System.out.println(s);
System.out.println("indexOf(t, 10) = " + s.indexOf('t', 10));
}
}
The code above generates the following result.