Java - String subSequence() Method


Advertisements

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 Test {

   public static void main(String args[]) {
      String Str = new String("Welcome to Tutorialspoint.com");

      System.out.print("Return Value :" );
      System.out.println(Str.subSequence(0, 10) );

      System.out.print("Return Value :" );
      System.out.println(Str.subSequence(10, 15) );
   }
}

This will produce the following result โˆ’

Output

Return Value :Welcome to
Return Value : Tuto
java_strings.htm
Advertisements