size_t strcspn(const char *s, const char * reject);

原型:size_t strcspn(const char *s, const char * reject);

说明:

函数说明:strcspn()从参数s 字符串的开头计算连续的字符, 而这些字符都完全不在参数reject 所指的字符串中. 简单地说, 若strcspn()返回的数值为n, 则代表字符串s 开头连续有n 个字符都不含字符串reject 内的字符.
返回值:返回字符串s 开头连续不含字符串reject 内的字符数目

举例:

#include <string.h>
 
main()
 
{
 
     char  *str =  "Linux was first developed for 386/486-based pcs. " ;
 
     printf ( "%d\n" strcspn (str,  " " ));
 
     printf ( "%d\n" strcspn (str,  "/-" ));
 
     printf ( "%d\n" strcspn (str,  "1234567890" ));
 
}
 
 
执行结果:
 
//只计算到" "的出现, 所以返回"Linux"的长度
 
33  //计算到出现"/"或"-", 所以返回到"6"的长度
 
30  // 计算到出现数字字符为止, 所以返回"3"出现前的长度




你可能感兴趣的:(size_t strcspn(const char *s, const char * reject);)