#include <string.h>
size_t strcspn(const char *s, const char *reject);
#include <stdio.h>
#include <string.h>
int main()
{
char *str = "abcd aabb-=ccdd 12345";
printf ("%d\n", strcspn(str, " "));
printf ("%d\n", strcspn(str, "-="));
printf ("%d\n", strcspn(str, "123"));
printf ("%d\n", strcspn(str, "kkkkkkkd"));
return 0;
}
./strcspn
4
9
16
3
欢迎光临 曲径通幽论坛 (http://www.groad.net/bbs/) | Powered by Discuz! X3.2 |