Computer >> 컴퓨터 >  >> 프로그램 작성 >> C 프로그래밍

C의 strpbrk()

<시간/>

strpbrk() 함수는 첫 번째 문자열의 첫 번째 문자를 찾고 두 번째 문자열의 모든 문자와 일치시키는 데 사용됩니다. 일치하는 항목이 없으면 NULL을 반환하고, 그렇지 않으면 두 번째 문자열의 문자와 일치하는 첫 번째 문자열의 문자에 대한 포인터를 반환합니다.

다음은 C 언어의 strpbrk() 구문입니다.

char *strpbrk(const char *string1, const char *string2)

다음은 C 언어로 된 strpbrk()의 예입니다.

예시

#include <stdio.h>
#include <string.h>
int main () {
   const char s1[] = "Helloworld";
   const char s2[] = "Blank";
   char *result;
   result = strpbrk(s1, s2);
   printf("The matching character : %c\n", *result);
   return(0);
}

출력

The matching character : l