strspn()函数 #include <string.h> size_t strspn(const char *ste1, const char *str2); 返回值: 返回str1中第一个不存在字符串str2中出现的字符下标; char *s1 = "abcdefghi"; char *s2 = "abcd"; int len = strspn(s1, s2); cout << len << endl; /* 结果为 4 */