Zi 字媒體
2017-07-25T20:27:27+00:00
Linux C function() 參考手冊:strstr(在字串中查找(搜尋)指定的字串)
資料來源:http://people.cs.nctu.edu.tw/~yslin/library/linuxc/main.htm線上執行:http://www.tutorialspoint.com/compile_c_online.phpcode2html:http://tohtml.com/
strstr(在一字符串中查找指定的字符串)相關函數index,memchr,rindex,strchr,strpbrk,strsep,strspn,strtok表頭文件#include定義函數char *strstr(const char *haystack,const char *needle);函數說明strstr()會從字符串haystack 中搜尋字符串needle,並將第一次出現的地址返回。返回值返回指定字符串第一次出現的地址,否則返回0。範例
#include <string.h>
#include <stdio.h>
int main()
{
char *s="0123456789876543210";
char *p='\0',*q='\0';
q= strstr(s,"987");
p= strstr(s,"901");
printf("%d\n",p-s);//沒有找到,值<0
printf("%d\n",q-s);//有找到,值>0
return 0;
}
寫了
5860316篇文章,獲得
23313次喜歡