This technique returns the index inside this thread of the initial rate of the specified substring, preliminary at the particular index. If it does not crop up, -1 is returned.
Here is the syntax of this method:
int indexOf(String str, int fromIndex)
Here is the detail of parameters −
import java.io.*; public class Test { public static void main(String args[]) { String Str = new String("Welcome to Intellinuts.com"); String SubStr1 = new String("Tutorials" ); System.out.print("Found Index :" ); System.out.println( Str.indexOf( SubStr1, 15 )); } }
This will produce the following result:
Found Index :-1
Here at Intellinuts, we have created a complete Java tutorial for Beginners to get started in Java.