赞
踩
类似的strchr(str,ch)。strchr函数原型:char * strchr(char * str,char ch); 功能就是找出在字符串str中第一次出项字符ch的位置,找到就返回该字符位置的指针(也就是返回该字符在字符串中的地址的位置),找不到就返回空指针(就是 null)。
strstr举例
- #include<stdio.h>
- #include<string.h>
- void main()
- {
- char *str1 = "WHEN YOU HERE PEOPLE SING";
- char *str2 = "PEOPLE";
- char *pl;
- pl=strstr(str1,str2);
- printf("Substring is %s\n",pl);
- }
运行结果
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。