C 速查手冊

11.3.8 strcspn()

string.h函數 (function) strcspn() ,需要兩個字串 (string) 當作參數 (parameter) ,計算經過幾個字元 (character) 會在第一個參數的字串遇到屬於第二個參數字串中的字元。

以下程式印出經過幾個字元在字串 s 中遇到屬於字串 t 的字元

#include <stdio.h>
#include <string.h>

int main(void)
{
    char s[] = "The spirit is willing but the flesh is weak.";
    char t[] = "but";
    
    printf("%d\n", strcspn(s, t));
    
    return 0;    
}

/* 《程式語言教學誌》的範例程式
    http://kaiching.org/
    檔名:cstrcspn.c
    功能:示範 string.h 中函數 strcspn() 的使用
    作者:張凱慶 */

編譯後執行,結果如下

$ gcc cstrcspn.c
$ a.out
9
$

上一頁 11.3.7 strchr()
回 C 速查手冊 - 標準程式庫分類索引
下一頁 11.3.9 strspn()
回 C 速查手冊 - 標準程式庫導覽
回 C 速查手冊首頁
回 C 教材首頁
回程式語言教材首頁