Deletes the characters in the range [start, end).
Example:
var sb = new StringBuilder.withString ("Hello, World");
sb.deleteRange (5, 7);
assert (sb.toString () == "HelloWorld");
| start |
the start index (inclusive). |
| end |
the end index (exclusive). |
|
this StringBuilder for chaining. |