C库函数 size_t strspn(const char *str1, const char *str2) 计算str1的起始段的长度完全在str2的字符组成。
声明
以下是strspn() 函数的声明。
size_t strspn(const char *str1, const char *str2)
参数
-
str1 -- 这是主要的C字符串进行扫描。
-
str2 -- 这是字符串匹配的字符在str1中包含列表。
返回值
这个函数返回的字符数只包含字符str2 为str1的起始段。
例子
下面的例子显示strspn() 函数的用法。
#include <stdio.h> #include <string.h> int main () { int len; const char str1[] = "ABCDEFG019874"; const char str2[] = "ABCD"; len = strspn(str1, str2); printf("Length of initial segment matching %d ", len ); return(0); }
让我们编译和运行上面的程序,这将产生以下结果:
Length of initial segment matching 4