|
-
October 7th, 2002, 05:42 PM
#1
Is there a function like strtok() that can use "TD" as delimiter characters?
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?
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|