Java String.substring(int beginIndex)

Syntax

String.substring(int beginIndex) has the following syntax.

public String substring(int beginIndex)

Example

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));
  }/*w  ww .ja v  a  2s  . c  o m*/
}

The code above generates the following result.





















Home »
  Java Tutorial »
    java.lang »




Boolean
Byte
Character
Class
Double
Enum
Float
Integer
Long
Math
Number
Object
Package
Process
ProcessBuilder
Runnable
Runtime
SecurityManager
Short
StackTraceElement
StrictMath
String
StringBuffer
StringBuilder
System
Thread
ThreadGroup
ThreadLocal
Throwable