the following code will break down the string command using space i.e " " and a full stop i.e. "." What if i want to break down command using the occurrence of both the space and full stop (at the same time) and not each by themselves e.g. a command like: 'hello .how are you' will be broken into the pieces (ignoring the quotes) [hello] [how are you today]
char *token2 = strtok(command, " .");
lex) or library (I only know a C++ parser libraryboost::spirit, not any C library). – n.m. Aug 21 '11 at 6:07