Description

Modify in place a String removing chars from the provided index to the end of the String or from the provided index to index plus count.

Syntax

string.remove(index)

string.remove(index, count)

Parameters

index: a variable of type unsigned int

count: a variable of type unsigned int

Returns

None

See also

Guide Home