suppose I have a string
string text = "There are many empty space and tabs inside ";
The empty space in this string might be \t or " ", and uncertain how many spaces or tabs between two tokens. How can I get tokens from that string? Which is a better method, 'strtok' or 'substring'?