C++常用字符串函數大全(2)
1、cstring.h常用函數介紹
cstring.h
庫即C語言中的string.h
庫,它是C語言中為字符串提供的標準庫。C++對此進行瞭兼容,所以我們在C++當中一樣可以使用。
這個庫當中有大量的關於字符串操作的api
,本文選擇瞭其中最常用的幾個進行闡述。
2、strlen
由於編譯器是按照\0的位置來確定字符串的結尾的,所以字符串的長度並不等於數組的長度。
我們可以使用strlen函數求得字符串的真實長度:
char name[100] = "hello world"; cout << strlen(name) << endl;
比如我們這裡用一個長度為100的char
數組存儲瞭“helloworld
”字符串,當我們使用strlen
函數求它的實際長度隻有11。
3、strcat
strcat函數可以將兩個字符串進行拼接,它的函數簽名為:
char *strcat(char *dest, const char *src)
我們可以看到它接受兩個參數,一個是dest
,一個是src
,都是char
*類型,返回的結果也為char
*類型。在C++當中,數組名是指向數組中第一個元素的常量指針。所以雖然簽名中寫的參數是指針類型,但我們傳入數組名同樣可以。
我們傳入兩個字符串之後,strcat
函數會將src
字符串拼接在dest
字符串末尾,並且返回指向拼接之後結果的指針。
所以下面兩種方式輸出結果得到的值是一樣的。
char name[100] = "hello world"; char level[100] = "concat test"; char *ret = strcat(name, level); cout << ret << endl; // 方式1 cout << name << endl; // 方式2
4、strncat
strcat函數的變種,函數額外多接收一個參數控制拷貝src字符串的最大長度。
char *strncat(char *dest, const char *src, size_t n)
我們使用剛才同樣的例子:
char name[100] = "hello world"; char level[100] = "concat test"; char *ret = strncat(name, level, 4); cout << ret << endl; cout << name << endl;
由於我們傳入瞭4,限制瞭level
字符串拷貝的長度,所以最終得到的結果為:hello worldconc。
5、strcpy
字符串拷貝函數,可以將src
字符串中的內容復制到dest
。
char *strcpy(char *dest, const char *src)
使用方法和前面介紹的其他函數類似,有兩點需要註意。
如果dest
字符串長度不夠長,在編譯時不會報錯,但運行時可能導致問題。
char name[10] = ""; char level[100] = "concat test"; strcpy(name, level); cout << name << endl;
上面這段代碼可以編譯運行,但是運行的時候終端會出現出錯信息。
所以在使用strcpy
的時候千萬小心,一定要保證dest
有足夠長度。
如果dest中原本就有內容,會被覆蓋。
char name[15] = "abc"; char level[100] = "concat test"; strcpy(name, level); cout << name << endl;
運行完strcpy
之後,name
中的內容會被清空。
6、strncpy
strcpy
加入長度限制的版本,可額外多傳入一個參數n表示最多賦值n個字符。當src
長度小於n時,剩餘部分將會使用空字節填充。
char *strncpy(char *dest, const char *src, size_t n) char name[15] = "abc"; char level[100] = "concat test"; strncpy(name, level, 4); cout << name << endl;
輸出結果為conc。
7、memset
字符串的批量設置函數,可以將字符串批量設置成某一個字符。
void *memset(void *str, int c, size_t n)
int c
表示要被設置的字符,size_t n
表示設置的字符數量。
char name[15] = "abc"; char level[100] = "concat test"; memset(name, 'c', 10); cout << name << endl;
上述代碼的運行結果為10個c。
多說一句,memset
除瞭可以用來給字符串進行批量設置之外也可以給int型的數組進行批量設置。由於一個32位的int占據4個字節,也就是4個字符長度。所以使用memset
進行批量設置的時候,最終得到的結果將是4個傳入的int c
拼接的結果。
int a[100]; memset(a, 1, sizeof a); // memset(a, 1, 400); 因為一個int占據4個字節
我們這樣設置之後,a數組當中的元素並不是1,而是0x01010101
,轉成10進制是16843009
。
所以使用memset
對int
型數組進行初始化一般隻用3種操作:
// 1. 批量設置成0 memset(a, 0, sizeof a); // 2. 批量設置成-1 memset(a, -1, sizeof a); // 3. 批量設置成一個接近最大整數上限的值 memset(a, 0x7f, sizeof a); memset(a, 0x3f, sizeof a);
關於memset
使用的一些具體細節將在後續題解的實際問題當中再做詳細說明。
8、memcpy
和strcpy
類似,從str2中復制N個字符到str1中。
void *memcpy(void *str1, const void *str2, size_t n) char name[15] = "abc"; char level[100] = "concat test"; memcpy(name, level, 10);
9、strcmp
將兩個字符串按照字典順序進行比較,對於字典序的順序定義為:兩個字符串自左向右逐個字符相比(按 ASCII 值大小相比較),直到出現不同的字符或遇 \0 為止。
int strcmp(const char *str1, const char *str2)
返回的結果為一個int,如果它小於0,說明str1
小於str2
,如果它等於0,說明兩者相等,如果大於0,說明str1
大於str2
。
char name[15] = "abc"; char level[100] = "abcd"; cout << strcmp(name, level) << endl;
運行結果為-100,說明name小於level。
10、strncmp
strcmp
長度限制版,可以額外接受一個數字n,表示最多比較長度為n的字符。
int strncmp(const char *str1, const char *str2, size_t n)
11、strstr
char *strstr(const char *haystack, const char *needle)
在haystack
中搜索needle
第一次出現的位置,返回指向該位置的指針。
char name[15] = "search-test"; char level[100] = "-"; char *ret = strstr(name, level); cout << ret << endl;
運行之後,屏幕輸出的結果為:
因為當我們使用cout
輸出一個char *
變量的時候,它會當做是字符串進行輸出,即一直輸出字符,直到遇見\0
為止。
輸出的結果為-test
,說明我們通過strstr
函數找到瞭“-
”出現的位置,跳過瞭之前的內容。
除瞭上文介紹的這些函數之外,cstring
當中還有很多其他的api
,例如strtok
,memmove
等等,大傢感興趣不妨去翻閱相關文檔,也許會有驚喜。
到此這篇關於C++常用字符串函數大全的文章就介紹到這瞭,更多相關C++常用字符串函數內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!
註:文章轉自微信公眾號:Coder梁(ID:Coder_LT)