Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 920911
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T18:47:35+00:00 2026-05-15T18:47:35+00:00

In Java I am using the substring() method and I’m not sure why it

  • 0

In Java I am using the substring() method and I’m not sure why it is not throwing an “out of index” error.

The string abcde has index start from 0 to 4, but the substring() method takes startIndex and endIndex as arguments based on the fact that I can call foo.substring(0) and get “abcde”.

Then why does substring(5) work? That index should be out of range. What is the explanation?

/*
1234
abcde
*/
String foo = "abcde";
System.out.println(foo.substring(0));
System.out.println(foo.substring(1));
System.out.println(foo.substring(2));
System.out.println(foo.substring(3));
System.out.println(foo.substring(4));
System.out.println(foo.substring(5));

This code outputs:

abcde
bcde
cde
de
e
     //foo.substring(5) output nothing here, isn't this out of range?

When I replace 5 with 6:

foo.substring(6)

Then I get error:

Exception in thread "main" java.lang.StringIndexOutOfBoundsException:
    String index out of range: -1
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-15T18:47:36+00:00Added an answer on May 15, 2026 at 6:47 pm

    According to the Java API doc, substring throws an error when the start index is greater than the Length of the String.

    IndexOutOfBoundsException – if
    beginIndex is negative or larger than
    the length of this String object.

    In fact, they give an example much like yours:

    "emptiness".substring(9) returns "" (an empty string)
    

    I guess this means it is best to think of a Java String as the following, where an index is wrapped in |:

    |0| A |1| B |2| C |3| D |4| E |5|
    

    Which is to say a string has both a start and end index.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 496k
  • Answers 496k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer String literals exist in the fixed data segment of the… May 16, 2026 at 11:35 am
  • Editorial Team
    Editorial Team added an answer Many applications may provide a way to capture user preferences… May 16, 2026 at 11:35 am
  • Editorial Team
    Editorial Team added an answer You could do something like: var offset = 100; $(document.body).find('[offsetTop… May 16, 2026 at 11:35 am

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Related Questions

I recently discovered that the java.lang.String.substring method does not return a new string, but
Using java I am trying to develop a method using recursion to analyze a
How would I go about using a negative lookbehind(or any other method) regular expression
I need to replace a dynamic substring withing a larger string, but only once
Here is the error: Exception in thread main java.lang.NoClassDefFoundError: org/alicebot/server/net/AliceServer Caused by: java.lang.ClassNotFoundException: org.alicebot.server.net.AliceServer
I'm transforming a DOM document to XML in java using javax.xml APIs. The result
I'm working on a web application written in Java using the Tapestry 5.1.0.5 framework.
I'm using Java at the core backend and JSP pages as GUI frontend. and
I'm using Java sound to play back a number of sound samples with the
I was working on HTTP post using java and encountered a weird stream behavior.

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.