strstr函数的用法

来源:互联网 发布:什么样的鞋子百搭 知乎 编辑:程序博客网 时间:2024/06/05 14:54

strstr

strstr(str1,str2) 函数用于判断字符串str2是否是str1的子串。如果是,则该函数返回str2在str1中首次出现的地址;否则,返回NULL。

包含文件:string.h
函数名: strstr
函数原型:
1
extern char *strstr(char *str1, const char *str2);
语法:
1
strstr(str1,str2)
str1: 被查找目标 string expression to search.
str2: 要查找对象 The string expression to find.
返回值:若str2是str1的子串,则返回str2在str1的首次出现的地址;如果str2不是str1的子串,则返回NULL。

应用举例:
#include<iostream>#include<cstring>using namespace std;int main(){char str[]="12345xyz";char *str1;char t[10000];cin>>t;str1=strstr(str,t);if(str1==NULL)  cout<<"null"<<endl;else cout<<*str1<<endl;   //返回子串在主串中首次出现的位置}



0 0
原创粉丝点击