Java String subSequence()

The syntax of the subSequence() method is:

string.subSequence(int startIndex, int endIndex)

Here, string is an object of the String class.


subSequence() Parameters

The subSequence() method takes two parameters.

  • startIndex - the starting index (inclusive)
  • endIndex - the ending index (exclusive)

subSequence() Return Value

  • The subSequence() method returns a CharSequence.

Example: Java String subSequence()

class Main {
  public static void main(String[] args) {
    String str = "Java Programming";

    System.out.println(str.subSequence(3, 8)); // a Pro
  }
}
Did you find this article helpful?

Your builder path starts here. Builders don't just know how to code, they create solutions that matter.

Escape tutorial hell and ship real projects.

Try Programiz PRO
  • Real-World Projects
  • On-Demand Learning
  • AI Mentor
  • Builder Community