C庫函式 char *strpbrk(const char *str1, const char *str2) 找到第一個字元匹配任何字元的字串str1在str2中指定字元。這不包括終止空字元。
以下是strpbrk() 函式的宣告。
char *strpbrk(const char *str1, const char *str2)
str1 -- 這是C字串進行掃描。
str2 -- 這是C字串,其中包含的字元匹配。
這個函式返回一個指標相匹配的其中一個字元在str2中,如果沒有這樣的字元或NULL字元在str1。
下面的例子顯示了strpbrk()函式的用法。
#include <stdio.h> #include <string.h> int main () { const char str1[] = "abcde2fghi3jk4l"; const char str2[] = "34"; char *ret; ret = strpbrk(str1, str2); if(ret) { printf("First matching character: %c ", *ret); } else { printf("Character not found"); } return(0); }
讓我們編譯和執行上面的程式,這將產生以下結果:
First matching character: 3