Description:
This method returns a new character sequence that is a subsequence of this
sequence.
Syntax:
Here is the syntax of this method:
public CharSequence subSequence(int beginIndex, int endIndex)
Parameters:
Here is the detail of parameters:
beginIndex: the begin index, inclusive.
endIndex: the end index, exclusive.
Return Value :
This method returns the specified subsequence.
example
import java.io.*; public class stest{ public static void main(String args[]){ String Str = new String("Welcome to India"); System.out.print("Return Value :" ); System.out.println(Str.subSequence(0, 8) ); System.out.print("Return Value :" ); System.out.println(Str.subSequence(8,12) );}} |