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