在C語言中,字符串是一系列字符的集合,以空字符’\0’結尾。為了識別字符串,我們通常會使用字符串函數,這些函數可以處理字符串的創建、復制、連接、比較等操作。以下是一些常用的字符串處理函數:
#include <string.h>
char str[] = "Hello, World!";
int len = strlen(str); // len = 13
#include <string.h>
char src[] = "Hello";
char dest[6]; // 需要足夠的空間來存儲源字符串和結束符
strcpy(dest, src); // dest 現在是 "Hello"
#include <string.h>
char str1[] = "Hello, ";
char str2[] = "World!";
strcat(str1, str2); // str1 現在是 "Hello, World!"
#include <string.h>
char str1[] = "Hello";
char str2[] = "World";
int result = strcmp(str1, str2); // result = -13(因為str1在字典順序上小于str2)
#include <string.h>
char str[] = "Hello, World!";
char target[] = "World";
char* position = strstr(str, target); // position 指向 "World!" 的開始位置
通過這些字符串處理函數,我們可以方便地識別和處理字符串。