strchr()函数用于查找字符串中第一个出现的指定字符的位置。
strchr()函数 语法
char*strchr(const char*s,int c);
参数s为要查找的目标字符串;
参数c为要查找的字符。
strchr()函数返回字符第一次出现的位置。
strchr()函数 示例
本示例使用strchr函数查找字符串s中指定字符u的首次出现的位置,其具体代码如下所示:
#include<stdio.h>
#include<string.h>
int main(void)
{
char s[20];/*定义字符数组*/
char*p,c='u';/*声明要查找的字符*/
strcpy(s,"good luck to you");/*复制字符串*/
p=strchr(s,c);/*查找字符*/
if(p)
printf("The character%c is at position:%d ",c,p-s);/*输出字符首次出现的位置*/
else
printf("The character was not found ");
return 0;
}
运行结果如图所示。