deleteCharAt method

StringBuilder deleteCharAt(
  1. int index
)

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);
}