Linux C function() 參考手冊:strchr(找字串中第一個出現的指定字元)

Linux C function() 參考手冊:strchr(找字串中第一個出現的指定字元)

Linux C function() 參考手冊:strchr(找字串中第一個出現的指定字元)

 

資料來源:http://people.cs.nctu.edu.tw/~yslin/library/linuxc/main.htm
線上執行:http://www.tutorialspoint.com/compile_c_online.php
code2html:http://tohtml.com/

 

相關函數
index,memchr,rinex,strbrk,strsep,strspn,strstr,strtok
表頭文件
#include<string.h>
定義函數
char * strchr (const char *s,int c);
函數說明
strchr()用來找出參數s字符串中第一個出現的參數c地址,然後將該字符出現的地址返回。
返回值
如果找到指定的字符則返回該字符所在地址,否則返回0。
範例

 

#include <stdio.h>
#include <string.h>
int main()
{
char *s="0123456789012345678901234567890";
char *p;
printf("s=%s\n",s);
printf("find char='5'\n");
p=strchr(s,'5');
printf("p=%s\n",p);
return 0;
}

 

 


發表迴響

你的電子郵件位址並不會被公開。 必要欄位標記為 *