Tutorials Point


  Java Basics
  Java Object Oriented
  Java Advanced
  Java Useful References
  Java Useful Resources
  Selected Reading

© 2011 TutorialsPoint.COM


  Home     References     Discussion Forums     About TP  

Java - String subSequence() Method


previous next AddThis Social Bookmark Button


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 :

  • 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 produces following result:

Return Value :Welcome to
Return Value : Tuto


previous next Printer Friendly



  

Advertisement

Online Image Processing

Indian Baby Names