首先呼叫這些函式需要使用標頭檔案include
1、des += src;"abcd","xyz"->"abcdxyz"
char *mystrcat(char *des,const char *src);//字串連線
2、字串比較 >0,0,<0
int mystrcmp(const char *str1,const char *str2);
3.將字串轉成數字 "123"->123,"12a3"->12,"a123"->0
int myatoi(const char *str);
4.將數字轉成字串,12345->"12345" ****比較常用
void myitoa(char *str,int n);
5計算字串的有效長度,不包含'\0'
int mystrlen(const char *str)//linux ,unix
一些關於字串的函式
函式名 stpcpy 功 能 拷貝乙個字串到另乙個 用 法 char stpcpy char destin,char source 程式例 include include int main void 函式名 strcat 功 能 字串拼接函式 用 法 char strcat char destin,...
關於字串的一些方法
substring public string substring int beginindex 返回乙個新的字串,它是此字串的乙個子字串。該子字串始於指定索引處的字元,一直到此字串末尾。example string str abcdefg str str.substring 2 system.ou...
關於字串的一些操作(instr,substr)
1,instr 源字串,目標字串,搜尋位置,匹配第幾個 注意 字串的位置是從1開始,搜尋位置必須為從1開始,如果搜尋位置為0,則查詢結果為0,查詢結果為0代表未找到。select instr acv c 1,1 from dual 從a開始,查詢第乙個匹配c的位置,結果為2 2,substr 字串,...