-
Type:
Bug
-
Resolution: Duplicate
-
Priority:
P3
-
Affects Version/s: 8
-
Component/s: core-libs
-
generic
-
generic
If a StringJoiner has been constructed and the user requests a subSequence that is entirely within the bounds of the suffix, then the entire suffix is returned instead of the requested subSequence.
Example:
StringJoiner sj = new StringJoiner("-","Begin<", ">End"); sj.add("Foo");
then sj.subSequence( 10, 13 ) returns ">End" instead of "End"
Example:
StringJoiner sj = new StringJoiner("-","Begin<", ">End"); sj.add("Foo");
then sj.subSequence( 10, 13 ) returns ">End" instead of "End"
- blocks
-
JDK-8010953 Add primitive summary statistics utils
-
- Closed
-
- relates to
-
JDK-5015163 (str) String merge/join that is the inverse of String.split()
-
- Closed
-