String.startsWith(String prefix, int toffset) has the following syntax.
public boolean startsWith(String prefix, int toffset)
In the following code shows how to use String.startsWith(String prefix, int toffset) method.
public class Main{ public static void main(String[] argv){ System.out.println("java2s.com".startsWith("java", 2)); } }
The code above generates the following result.