常用字串查詢函式

2021-08-11 20:30:41 字數 543 閱讀 7509

基本查詢函式介紹:

strchr  

函式原型: char * strchr(char const *str, int ch);

功能:查詢str中字元ch第一次出現的位置

strrchr  

函式原型: char * strrchr(char const *str, int ch);

功能:查詢str中字元ch最後一次出現的位置

strpbrk

函式原型 char * strpbrk(char const* str, char const *group);

功能:查詢一組字元中任意乙個字元最先出現的位置

strstr

函式原型:char * strstr(char const * s1, char const * s2);

功能:查詢子串

#include #include #include void main()

kennetha.reek. c和指標-第2版[m]. 人民郵電出版社, 2008.

常用字串函式

memset 原型 extern void memset void buffer,int c,int count 用法 include 功能 把buffer所指記憶體區域的前count個位元組設定成字元c。說明 返回指向buffer的指標。舉例 memset.c include include ma...

常用字串函式

獲取檔案目錄 dirname c test web home.php 將字串填充到指定長度 str pad str,10,str pad both 重複指定字串 str repeat 4 按照指定長度將字串分割到陣列中 str split str,4 字串反轉 strrev str 大小寫轉換 st...

常用字串函式

strlen string 得到字串長度 strpos string,search offset 在指定字串中查詢目標字串第一次出現的位置 stripos string,search offset 忽略大小寫的去查詢 strrpos string,search offset 在指定字串中查詢目標字串...