Note: You must be registered in order to post a reply.To register, click here. Registration is FREE!
quote:If count is longer than the string, the remainder of the string will be removed.
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
string str$ = "this is a test"; i=str.Delete(5, 16); str$=; // this