Java String.startsWith(String prefix, int toffset)
Syntax
String.startsWith(String prefix, int toffset) has the following syntax.
public boolean startsWith(String prefix, int toffset)
Example
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));
}/*from w w w. j a va 2 s. c o m*/
}
The code above generates the following result.