delete Char At
Removes the char
at the specified position in this sequence. This sequence is shortened by one char
.
Note: If the character at the given index is a supplementary character, this method does not remove the entire character. If correct handling of supplementary characters is required, determine the number of char
s to remove by calling Character.charCount(thisSequence.codePointAt(index))
, where thisSequence
is this sequence.
Return
This object.
Parameters
index
Index of char
to remove
Throws
if the index
is negative or greater than or equal to length()
.