AKazak
Russia 1205 Posts
quote:If count is longer than the string, the remainder of the string will be removed.
YimingChen
1666 Posts
string str$ = "this is a test"; i=str.Delete(5, 16); str$=; // this
quote:Originally posted by YimingChenIf count is larger than the string length, the characters from index until the end of the string get deleted. string str$ = "this is a test"; i=str.Delete(5, 16); str$=; // this James