Empty
Make this string object an empty string (0 length) and free memory as appropriate.
void Empty( )
EX1
void string_Empty_ex1() { string str = ("This is a testing case."); str.Empty(); int len = str.GetLength(); out_int("The length of the string is ", len);//len = 0 }
string::IsEmpty
origin.h