Java.lang.StringBuilder.substring() Method
Advertisements
Description
The java.lang.StringBuilder.substring(int start) method returns a new String that contains a subsequence of characters currently contained in this character sequence. The substring begins at the specified index and extends to the end of this sequence.
Declaration
Following is the declaration for java.lang.StringBuilder.substring() method
public String substring(int start)
Parameters
start -- This is the beginning index, inclusive.
Return Value
This method returns the new string.
Exception
StringIndexOutOfBoundsException -- if start is less than zero, or greater than the length of this object.
Example
The following example shows the usage of java.lang.StringBuilder.substring() method.
package com.tutorialspoint;
import java.lang.*;
public class StringBuilderDemo {
public static void main(String[] args) {
StringBuilder str = new StringBuilder("admin");
System.out.println("string = " + str);
// prints substring from index 2
System.out.println("substring = "+ str.substring(2));
}
}
Let us compile and run the above program, this will produce the following result:
string = admin substring = min