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