deleteCharAt method
Deletes the character at the specified index.
index
the index of the character to delete
Returns this StringBuilder for method chaining
Implementation
StringBuilder deleteCharAt(int index) {
return delete(index, index + 1);
}