public remove(position as UInt, length as UInt) as StringBuilder throws IndexException:
Removes a range of characters.
| Parameter | Description |
|---|---|
position | Start position. |
length | Number of characters to remove. |
This builder.
builder = StringBuilder()
builder.append("Kxlyn")
builder.remove(1u, 1u)
print(builder.toString())