strpbrk()函数用于查找字符串中第一个出现指定字符的位置。
strpbrk()函数 语法
char strpbrk(const char*s1,const char*s2);
参数s1为要进行查找的目标字符;
参数s2为要查找的字符串。
strpbrk()函数返回指向s1中第一个匹配的字符的指针,若查找失败,则返回0。
strpbrk()函数 示例
本示例使用strpbrk函数在字符串s1中查找第一个属于字符串s2中的任何一个字符的位置,其具体代码如下所示:
#include<string.h>
#include<stdio.h>
void main()
{
char*s1="Please";/*声明字符串*/
char*s2="Never say die";/*声明字符串*/
char*p;
p=strpbrk(s1,s2);/*进行字符串查找*/
if(p)
printf("strpbrk found first character:%c ",*p);/*输出查找结果*/
else
printf("strpbrk didn't find character in set ");
}
运行结果如图所示。