Say, String str = "hello world" ; To, get hello, we can use str.subSequence(0, 5). If it's a 0-based indexed string, then why we don't write str.subSequence(0.4) as 'o' has the index 4?
|
Please see the javadoc for the method.
Returns a new character sequence that is a subsequence of this sequence. An invocation of this method of the form
behaves in exactly the same way as the invocation
This method is defined so that the String class can implement the CharSequence interface. Specified by: subSequence in interface CharSequence Parameters: beginIndex - the begin index, inclusive. endIndex - the end index, exclusive. Returns: the specified subsequence. Throws: IndexOutOfBoundsException - if beginIndex or endIndex are negative, if endIndex is greater than length(), or if beginIndex is greater than startIndex |
|||
|
|
|
The first argument value is inclusive whereas the second one is exclusive. |
|||||
|
|
Here in this methos subSequence() or SubStribg(), The second variable is not zero-based.So we have to calculate until secondvariable-1. |
|||
|
|
|
It actually has nothing to do the "0-ness" at all. The API is clear about this and gives an example. Substring and subSequence will return the set of characters of the set [n, m-1]. Or in other words, every character in the substring except for the 5th character, or more concretely, characters 0, 1, 2, 3, and 4. That way you could do: substring(offset,length+offset); notice how hello is 5 letters long? (Corrected now). |
|||||||
|