時不可以茍遇,道不可以虛行。
string
和char*
的區(qū)別:
char *
是一個指針string
是一個類,類內(nèi)部封裝了char *
,管理這個字符串,是一個char*
型的容器。特點:
find
、拷貝copy
、刪除delete
、替換replace
、插入insert
string
管理char*
所分配的內(nèi)存,不用擔(dān)心復(fù)制越界和取值越界等,由類內(nèi)部進(jìn)行負(fù)責(zé)。常用的四種方式:
string();
創(chuàng)建一個空字符串,例如:string str;
string s1; //默認(rèn)構(gòu)造
string(const char* s);
:使用字符串 s 初始化const char * str = "OilPicture";
string s2(str);
string(const string& str);
:使用一個 string 對象初始化另一個 string 對象,類似于拷貝構(gòu)造const char * str = "OilPicture";
string s2(str);
string s3(s2);
string(int n, char c);
:使用 n 個字符 c 初始化字符串,最后輸出結(jié)果為:打印 由10個字符 w 組成的字符串。string s4(10,'w');
cout<< "s4 = "<< s4<< endl;
賦值的函數(shù)原型:操作符operator=
和 成員函數(shù)assign
。
函數(shù)原型:
string& operator+=(const char* str);
:重載 += 操作符string& operator+=(const char c);
:重載 += 操作符string& operator+=(const string& str);
:重載 += 操作符string& append(const char *s);
:把字符串 s 連接到當(dāng)前字符串結(jié)尾string& append(const char *s, int n);
:把字符串 s 的前 n 個字符連接到當(dāng)前字符串結(jié)尾string& append(const string &s);
:同operator+=(const string& str);
string& append(const string &s, int pos, int n);
:將字符串 s 中從 pos 開始的 n 個字符連接到字符串結(jié)尾+=
加上一串字符:string str1 = "我";
str1 += "愛玩游戲";
cout<< "str1 = "<< str1<< endl;
str1 += ":";
cout<< "str1 = "<< str1<< endl;
string str2 = "LOL DNF";
str1 += str2;
cout<< "str1 = "<< str1<< endl;
string str3 = "I";
str3.append(" Love");
cout<< "str3 = "<< str3<< endl;
str3.append(" gameStory",4);
cout<< "str3 = "<< str3<< endl;
str3.append(str2);
cout<< "str3 = "<< str3<< endl;
str3.append(str2,0,3); //只截取到:LOL
cout<< "str3 = "<< str3<< endl;
0
開始,索引失敗即沒有查找字符的情況下,會返回-1
查找函數(shù):
find
:從左往右查找rfind
:從右往左查找string s1 = "OilPicture"; //從0開始索引,沒有情況下,會返回-1
//find
int pos1 = s1.find("i"); //pos1=1
int pos2 = s1.rfind("i"); //pos2=4
替換函數(shù):
replace(pos, len, string s);
:索引位置從 0 開始。string str1 = "abcdefg";
//從1號位置起 3個字符,替換為 "1111"
str1.replace(1,3,"1111");
replace
在替換時,要指定從哪個位置起,多少個字符,替換成什么樣的字符串。比較方式:字符串比較是按字符的 ASCII 值進(jìn)行對比
=
,返回:0>
,返回:1<
,返回:-1函數(shù)原型:
int compare(const string &s) const;
:與字符串 s 比較int compare(const char *s) const;
:與字符串 s 比較string str1 = "Oil";
string str2 = "Oil";
if(str1.compare(str2) == 0) {cout<< "str1 等于 str2"<< endl;
}else if(str1.compare(str2) >0) {cout<< "str1 大于 str2"<< endl;
}else {cout<< "str1 小于 str2"<< endl;
}
string 中單個字符存取方式有兩種:
char& operator[](int n);
:通過[]
方式取字符char& at(int n);
:通過at
方法獲取字符string str = "Hello";
[]
訪問單個字符。for (int i = 0; i< str.size(); ++i) {cout<< str[i]<< " ";
}
cout<< endl;
at
方式訪問單個字符。for (int i = 0; i< str.size(); ++i) {cout<< str.at(i)<< " ";
}
cout<< endl;
str[0] = 'W';
str.at(1) = 'W';
函數(shù)原型:(開始索引均是從0
開始)
string& insert(int pos, const char* s);
:插入字符串string& insert(int pos, const string& str);
:插入字符串string insert(int pos, int n, char c);
:在指定位置插入 n 個字符 cstring& erase(int pos, int n = npos);
:刪除從 pos 開始的 n 個字符string str = "Hello";
//插入
str.insert(1,"wz");
//Hello -->Hwzello
cout<< "str = "<< str<< endl;
//刪除:從第幾個位置刪除幾個元素
str.erase(1,2);
cout<< "str = "<< str<< endl;
string substr(int pos=0, int n=npos) const;
:返回由 pos 開始組成的字符串string str = "abcdef";
string subStr = str.substr(1,3);
//subStr -->bcd
cout<< "subStr = "<< subStr<< endl;
1
到3
的子串取出(索引下標(biāo)從 0 開始)string email = "oilpicture@sina.com";
//從郵箱地址中獲取用戶名信息
int pos = email.find("@");
cout<< "@符的位置為:"<< pos<< endl;
string usrName = email.substr(0,pos);
cout<< usrName<< endl;
@
符作為分隔符,然后取出由下標(biāo)0
到@
符位置下標(biāo)的子字符串,即為郵箱的用戶名。你是否還在尋找穩(wěn)定的海外服務(wù)器提供商?創(chuàng)新互聯(lián)www.cdcxhl.cn海外機(jī)房具備T級流量清洗系統(tǒng)配攻擊溯源,準(zhǔn)確流量調(diào)度確保服務(wù)器高可用性,企業(yè)級服務(wù)器適合批量采購,新人活動首月15元起,快前往官網(wǎng)查看詳情吧