Replaces the specified subsequence in this builder with the specified string. @param start the inclusive begin index. @param end the exclusive end index. @param str the replacement string. @return this builder. @throws StringIndexOutOfBoundsException if
(int start, int end, String str)
| 632 | * if {@code str} is {@code null}. |
| 633 | */ |
| 634 | public StringBuilder replace(int start, int end, String str) { |
| 635 | replace0(start, end, str); |
| 636 | return this; |
| 637 | } |
| 638 | |
| 639 | /** |
| 640 | * Reverses the order of characters in this builder. |