程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> C語言 >> C++ >> C++入門知識 >> C語言字符串函數集錦(一)(1)

C語言字符串函數集錦(一)(1)

編輯:C++入門知識

說起字符串函數,我想大家都不陌生。字符串函數對二進制數據、字符串和表達式執行不同的運算。下面總結了C語言中的字符串函數。

1、函數名: stpcpy

功 能: 拷貝一個字符串到另一個

用 法:

  1. char *stpcpy(char *destin, char *source);  

程序例:

  1. #include <stdio.h>   
  2. #include <string.h>   
  3. int main(void)   
  4. {   
  5. char string[10];   
  6. char *str1 = "abcdefghi";   
  7. stpcpy(string, str1);   
  8. printf("%s\n", string);   
  9. return 0;   
  10. }  

2、函數名: strcat

功 能: 字符串拼接函數

用 法:

  1. char *strcat(char *destin, char *source);  

程序例:

  1. #include <string.h>   
  2. #include <stdio.h>   
  3. int main(void)   
  4. {   
  5. char destination[25];   
  6. char *blank = " ", *c = "C++", *Borland = "Borland";   
  7. strcpy(destination, Borland);   
  8. strcat(destination, blank);   
  9. strcat(destination, c);   
  10. printf("%s\n", destination);   
  11. return 0;   
  12. }  

3、函數名: strchr

功 能: 在一個串中查找給定字符的第一個匹配之處\

用 法:

  1. char *strchr(char *str, char c);  

程序例:

  1. #include <string.h>   
  2. #include <stdio.h>   
  3. int main(void)   
  4. {   
  5. char string[15];   
  6. char *ptr, c = 'r';   
  7. strcpy(string, "This is a string");   
  8. ptr = strchr(string, c);   
  9. if (ptr)   
  10. printf("The character %c is at position: %d\n", c, ptr-string);   
  11. else   
  12. printf("The character was not found\n");   
  13. return 0;   
  14. }  

4、函數名: strcmp

功 能: 串比較

用 法:

  1. int strcmp(char *str1, char *str2);  

看Asic碼,str1>str2,返回值 > 0;兩串相等,返回0

程序例:

  1. #include <string.h>   
  2. #include <stdio.h>   
  3. int main(void)   
  4. {   
  5. char *buf1 = "aaa", *buf2 = "bbb", *buf3 = "ccc";   
  6. int ptr;   
  7. ptr = strcmp(buf2, buf1);   
  8. if (ptr > 0)   
  9. printf("buffer 2 is greater than buffer 1\n");   
  10. else   
  11. printf("buffer 2 is less than buffer 1\n");   
  12. ptr = strcmp(buf2, buf3);   
  13. if (ptr > 0)   
  14. printf("buffer 2 is greater than buffer 3\n");   
  15. else   
  16. printf("buffer 2 is less than buffer 3\n");   
  17. return 0;   
  18. }  

5、函數名: strncmpi

功 能: 將一個串中的一部分與另一個串比較, 不管大小寫

用 法:

  1. int strncmpi(char *str1, char *str2, unsigned maxlen);  

程序例:

  1. #include <string.h>   
  2. #include <stdio.h>   
  3. int main(void)   
  4. {   
  5. char *buf1 = "BBB", *buf2 = "bbb";   
  6. int ptr;   
  7. ptr = strcmpi(buf2, buf1);   
  8. if (ptr > 0)   
  9. printf("buffer 2 is greater than buffer 1\n");   
  10. if (ptr < 0)   
  11. printf("buffer 2 is less than buffer 1\n");   
  12. if (ptr == 0)   
  13. printf("buffer 2 equals buffer 1\n");   
  14. return 0;   
  15. }  

6、函數名: strcpy

功 能: 串拷貝

用 法:

  1. char *strcpy(char *str1, char *str2);  

程序例:

  1. #include <stdio.h>   
  2. #include <string.h>   
  3. int main(void)   
  4. {   
  5. char string[10];   
  6. char *str1 = "abcdefghi";   
  7. strcpy(string, str1);   
  8. printf("%s\n", string);   
  9. return 0;   
  10. }  


  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved