SetTokens
Copy a StringArray into this string and separate them with specified delimiter
int SetTokens( StringArray & saTokens, char chDelimiter = '\t' )
Number of tokens in this string, -1 for error
EX1
void string_SetTokens_ex1() { StringArray saColors = {"red", "green", "blue"}; string strColors; strColors.SetTokens(saColors, '|'); out_str(strColors);//"red|green|blue" }
string::GetNumTokens, string::GetTokens
origin.h