I used
char *strtok(
char *strToken,
const char *strDelimit
);
in my program, and set strDelimit="TD". But I found whenever it met 'T' or 'D' it will take it as the delimiter. But I want the delimiter is "TD"(two characters together), not 'T' or 'D' alone.
Which function should I use?
