C語言學習(四)字串函式

2022-03-30 09:42:54 字數 1068 閱讀 2396

1.  strcat 字串拼接函式 

用  法: char strcat(char 字元陣列1,char 字元陣列2) 

說  明: 把字元陣列2拼接到字元陣列1的後面

#include #include 

int main(void

)

2. stpcpy拷貝乙個字串到另乙個

用  法: char stpcpy(char 字元陣列1,char 字元陣列2); 

說 明:將字串2複製到字元陣列1中去

#include #include 

int main(void

)

用  法: char stpcpy(字元陣列1,字元陣列2,int n); 

說 明:將字串2前面n個字元複製到字元陣列1中去

注意:不能用賦值語句將乙個字串常量或字元陣列直接給乙個字元陣列 :str1=″china″; str1=str2;  

3. strcmp串比較

用  法: int strcmp(char 字元陣列1,char 字元陣列2);

從左到右比較asic碼

(1) 如果字串1=字串2,函式值為0。

(2) 如果字串1>字串2,函式值為一正整數。

(3) 如果字串1《字串2,函式值為一負整數。

4. strlen串長度

用  法:strlen(字串)

說 明:strlen是測試字串長度的函式。函式的值為字串中的實際長度(不包括′\0′在內)

如:char str[10]=;

printf(″%d″,strlen(str));長度5

5. strlwr大寫轉小寫

用  法:strlwr(字串)

說 明:strlwr函式的作用是將字串中大寫字母換成小寫字母

6. strupr小寫轉大寫

用  法:strupr(字串)

說 明:strupr函式的作用是將字串中小寫字母換成大寫字母

C語言(四) 字串

define crt secure no warnings include include include 使用字元陣列儲存字串 void main char str 8 char str 10 chinese str 0 s printf s n str getchar 見圖一效果圖 字元指標 v...

dart語言學習(四) 字串 布林型

字串型別 使用單引號,雙引號建立字串 使用三個引號或雙引號建立多行字串 使用r建立原始raw字串 void main 字串操作 運算子 插值表示式 常用屬性 length isempty isnotempty 常用方法 contains substring startswith endswith i...

Oracle基礎(四) 字串函式

1 concat char1,char2 將兩個字串拼接後返回 select concat ename,sal from emp 巢狀使用 select concat concat ename,sal from emp 使用 操作符來連線字串 select ename sal from emp 2 ...