Java Data Type Tutorial - 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));
    }
}

The code above generates the following result.