Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Code:

public class Test {
    public static void main(String[] args) {
        String str = "University";
        System.out.println(str.substring(4,7));
    }   
}

Output: ers

I do not really understand how the substring mehtod works. Does the index start at 0? If I start with 0, e is at index 4 but char i is at 7 so the output would be ersi.

Can anyone help me out?

share|improve this question
10  
Tried reading docs? download.oracle.com/javase/6/docs/api/java/lang/…;, int) It's not in Chinese. – Nikita Rybak Dec 31 '10 at 12:16
1  
@Nikit It is in Chinese! – marcog Dec 31 '10 at 12:26

5 Answers

up vote 24 down vote accepted

0: U

1: n

2: i

3: v

4: e

5: r

6: s

7: i

8: t

9: y

Start index is inclusive

End index is exclusive

Javadoc link

share|improve this answer
1  
thanks, thats exactly what I found informative; beginIndex - the beginning index, inclusive. endIndex - the ending index, exclusive. – artworkad シ Dec 31 '10 at 12:22

see the javadoc, it's an inclusive index for the 1st arg and exclusive for the 2nd

share|improve this answer

Both are 0-based, but the start is inclusive and the end is exclusive. This ensures the resulting string is of length start - end. Think of them as positions in the string rather than actual characters.

0 1 2 3 4 5 6 7 8 9
 u n i V E R s i t y
      s       e
      t       n
      a       d
      r
      t

Quoting the docs:

The substring begins at the specified beginIndex and extends to the character at index endIndex - 1. Thus the length of the substring is endIndex-beginIndex.

share|improve this answer

Yes the index starts at zero (0). The two arguments are startIndex and endIndex, where per the docs:

"The substring begins at the specified beginIndex and extends to the character at index endIndex - 1"

See here for more info.

share|improve this answer

Like you I didn't find it came naturally. I normally still have to remind myself that

  • the length of the returned string is

    lastIndex - firstIndex

  • that you can use the length of the string as the lastIndex even though there is no character there and trying to reference it would throw an Exception

so

"University".substring(6, 10)

returns the 4-character string "sity" even though there is no character at position 10.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.