C语言 基础开发----目录
一、strstr()简介
1. 函数原型
char *strstr(char *str1, const char *str2);
2. 参数
- str1– 被查找目标的地址指针。
- str2– 要查找目标的地址指针。
3. 功能
返回字符串中首次出现子串的地址。
4. 头文件
#include <string.h>
5. 返回值
如果str2是str1的子串,则返回str2在str1的首次出现的地址;
如果str2不是str1的子串,则返回NULL。
二、strstr()用法
strstr()函数是用来在一串字符串中找到你想要找的字符串,然后返回其所在位置(地址)。
具体代码如下:
#include <stdio.h>
#include <string.h>int main(int argc, char *argv[])
{char temp1[]="VV=0805,MQ=0522";char temp2[]="VV";char temp3[]="MQ";char *temp4;char *temp5;temp4=strstr(temp1,temp2);temp5=strstr(temp1,temp3);printf("temp4:%s\ntemp5:%s\n",temp4,temp5);//打印要查找的字符串及以后 printf("%c%c%c%c\n",temp4[3],temp4[4],temp4[5],temp4[6]);//打印要查找的字符串后面的数值 printf("%c%c%c%c\n",temp5[3],temp5[4],temp5[5],temp5[6]);//打印要查找的字符串后面的数值 return 0;
}
运行结果如下:
temp4:VV=0805,MQ=0522
temp5:MQ=0522
0805
0522
本文链接:https://my.lmcjl.com/post/7947.html
展开阅读全文
4 评论