strspn() - C語言庫函數
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