C语言(函数)学习之strstr strcasestr

C语言(函数)学习之[strstr]&[strcasestr]一、strstr函数使用[1]函数原型char*strstr(constchar*haystack,constchar*needle);[2]头文件#include <string.h>[3]函数功能搜索"子串"在"指定字符串"中第一次出现的位置{4}参数说明haystack-->被查找的目标字符串"父串"needle-->要查找的字符串对象"子串"注:若needle为NULL,则返回"父串"[5]返回值(1)成功找到,返回在"父串"中第一次出现的位置的char*指针(2)若未找到,也即不存在这样的子串,返回:"NULL"[6]程序举例#include <stdio.h>#include <string.h>intmain(intargc,char*argv[]){char*res=strstr("xxxhost: www.baidu.com","host");if(res==NULL)printf("res1 is NULL!\n");elseprintf("%s\n",res);print:-->'host: www.baidu.com'res=strstr("xxxhost: www.baidu.com","cookie");if(res==NULL)printf("res2 is NULL!\n");elseprintf("%s\n",res);print:-->'res2 is NULL!'return0;}[7]特别说明注:strstr函数中参数严格"区分大小写"二、strcasestr函数[1]描述strcasestr函数的功能、使用方法与strstr基本一致[2]区别strcasestr函数在"子串"与"父串"进行比较的时候,"不区分大小写"[3]函数原型#define _GNU_SOURCE#include <string.h>char*strcasestr(constchar*haystack,constchar*needle);[4]程序举例#define _GNU_SOURCE // 宏定义必须有,否则编译会有Warning警告信息 #include <stdio.h>#include <string.h>intmain(intargc,char*argv[]){char*res=strstr("xxxhost: www.baidu.com","Host");if(res==NULL)printf("res1 is NULL!\n");elseprintf("%s\n",res);print:-->'host: www.baidu.com'return0;}[5]重要细节如果在编程时没有定义"_GNU_SOURCE"宏,则编译的时候会有警告信息warning:initializationmakespointerfromintegerwithoutacast原因:strcasestr函数并非是标准C库函数,是扩展函数。函数在调用之前未经声明的默认返回int型解决:要在#include所有头文件之前加 #define_GNU_SOURCE另一种解决方法:(但是不推荐)在定义头文件下方,自己手动添加strcasestr函数的原型声明#include <stdio.h>......externchar*strcasestr(constchar*,constchar*);......// 这种方法也能消除编译时的警告信息

版权声明:本文为博主原创文章,未经博主允许不得转载。

上一篇:Drools 函数学习


下一篇:touch.js下载使用方式