String.substring(int beginIndex) has the following syntax.
public String substring(int beginIndex)
In the following code shows how to use String.substring(int beginIndex) method.
public class Main { public static void main(String[] argv) { String str = "java2s.com"; System.out.println(str.substring(2)); } }
The code above generates the following result.