字串的一些基本操作

2022-03-08 13:58:39 字數 548 閱讀 8478

string 過載了運算子,可以直接比較大小

charstrcmp(s1,s2)返回s1-s2

strncat(s1,s2,len)

charchar *strstr(s1,s2)函式用於判斷字串str2是否是str1的子串。如果是,則該函式返回 str1字串從 str2第一次出現的位置開始到 str1結尾的字串;否則,返回null

charstrrev(s1)

也可以使用reverse(begin,end)

char *itoa (int value, char *str, int base );

sprintf(s,"%x",100);

字串的一些基本操作

下面是字串的一些基本操作,但是筆者在這裡流下了一點操作,看看哪位讀者能夠說明錯誤的地方在 怎麼改進它。include string.h include stdio.h include stdlib.h include io.h include math.h include time.h define...

字串的一些操作

一,把字串的首字母大寫返回乙個新的字串 1.1簡單寫法,把乙個單詞的首字母大寫 string.prototype.firstuppercase function 1.2字串中所有單詞首字母大寫,非首字母小寫 string.prototype.firstuppercase function 另一種寫法...

C 字串的一些操作

1 定義和構造初始化 string 提供了很多建構函式,可以以多種方式來初始化string字串 5.比較操作 compare 等 string的比較操作,按字元在字典中的順序進行逐一比較。在字典前面的字元小於後面的字元。include includeusing namespace std int m...