C++標準string類的使用

相信大家在寫c++程序時最糾結的還是指針和字符串的處理吧。實際上c++有標準的string類庫。我也是主要借鑑了兩篇博文。分別是http://www.cnblogs.com/xFreedom/archive/2011/05/16/2048037.html,和http://blog.csdn.net/yzl_rex/article/details/7839379。他們寫的都非常詳細,我就不再贅述。這裏就貼一下代碼片吧。

//string函數用法詳解!附代碼,寫具體的用法!   
#include <iostream>  
#include <string>  
#include <sstream>   
using namespace std;  
  
  
int main()  
{  
    //1.string類重載運算符operator>>用於輸入,同樣重載運算符operator<<用於輸出操作  
    string str1;  
    cin >> str1;//當用cin>>進行字符串的輸入的時候,遇到空格的地方就停止字符串的讀取輸入   
    cout << str1 << endl;  
    cin.get();//這個的作用就是讀取cin>>輸入的結束符,不用對getline的輸入產生影響!   
    getline(cin, str1);//字符串的行輸入  
    cout << str1 << endl;   
      
      
    //2.string類的構造函數   
    string str2 = "aaaaa";//最簡單的字符串初始化   
    cout << str2 << endl;   
      
    char *s = "bbbbb";  
    string str3(s);//用c字符串s初始化   
    cout << str3 << endl;  
      
    char ch = 'c';  
    string str4(5, ch);//用n個字符ch初始化   
    cout << str4 << endl;   
      
    //3.string類的字符操作  
    string str5 = "abcde";   
    ch = str5[3];//operator[]返回當前字符串中第n個字符的位置   
    cout << ch << endl;   
      
    string str6 = "abcde";  
    ch = str6.at(4);//at()返回當前字符串中第n個字符的位置,並且提供範圍檢查,當越界時會拋出異常!    
    cout << ch << endl;   
      
    //4.string的特性描述  
    string str7 = "abcdefgh";  
    int size;  
    size = str7.capacity();//返回當前容量   
    cout << size << endl;   
    size = str7.max_size();//返回string對象中可存放的最大字符串的長度   
    cout << size << endl;   
    size = str7.size();//返回當前字符串的大小   
    cout << size << endl;   
    size = str7.length();//返回當前字符串的長度   
    cout << size << endl;   
    bool flag;  
    flag = str7.empty();//判斷當前字符串是否爲空   
    cout << flag << endl;  
    int len = 10;   
    str7.resize(len, ch);//把字符串當前大小置爲len,並用字符ch填充不足的部分   
    cout << str7 << endl;   
      
    //5.string的賦值  
    string str8;  
    str8 = str7;//把字符串str7賦給當前字符串  
    cout << str8 << endl;  
    str8.assign(str7);//把字符串str7賦給當前字符串   
    cout << str8 << endl;   
    str8.assign(s);//用c類型字符串s賦值   
    cout << str8 << endl;   
    str8.assign(s, 2);//用c類型字符串s開始的n個字符賦值   
    cout << str8 << endl;   
    str8.assign(len, ch);//用len個字符ch賦值給當前字符串   
    cout << str8 << endl;   
    str8.assign(str7, 03);//把字符串str7中從0開始的3個字符賦給當前字符串   
    cout << str8 << endl;   
    string str9 = "0123456789";  
    str8.assign(str9.begin(), str9.end());//把迭代器之間的字符賦給字符串   
    cout << str8 << endl;   
      
    //6.string的連接  
    string str10;  
    str10 += str9;//把字符串str9連接到當前字符串的結尾   
    cout << str10 << endl;  
    str10.append(s);//把c類型字符串s連接到當前字符串的結尾   
    cout << str10 << endl;   
    str10.append(s, 2);//把c類型字符串s的前2個字符連接到當前字符串的結尾   
    cout << str10 << endl;   
    str10.append(str9.begin(), str9.end());//把迭代器之間的一段字符連接到當前字符串的結尾   
    cout << str10 << endl;   
    str10.push_back('k');//把一個字符連接到當前字符串的結尾   
    cout << str10 << endl;   
      
    //7.string的比較  
    flag = (str9 == str10);//判斷兩個字符串是否相等   
    cout << flag << endl;  
    flag = (str9 != str10);//判斷兩個字符串是否不相等   
    cout << flag << endl;   
    flag = (str9 > str10);//判斷兩個字符串是否大於關係   
    cout << flag << endl;  
    flag = (str9 < str10);//判斷兩個字符串是否爲小於關係   
    cout << flag << endl;  
    flag = (str9 >= str10);//判斷兩個字符串是否爲大於等於關係   
    cout << flag << endl;  
    flag = (str9 <= str10);//判斷兩個字符串否爲小於等於關係   
    cout << flag << endl;   
      
    //以下的3個函數同樣適用於c類型的字符串,在compare函數中>時返回1,<時返回-1,=時返回0   
    flag = str10.compare(str9);//比較兩個字符串的大小,通過ASCII的相減得出!   
    cout << flag << endl;   
    flag = str10.compare(612, str9);//比較str10字符串從6開始的12個字符組成的字符串與str9的大小   
    cout << flag << endl;  
    flag = str10.compare(612, str9, 35);//比較str10字符串從6開始的12個字符組成的字符串與str9字符串從3開始的5個字符組成的字符串的大小   
    cout << flag << endl;   
      
    //8.string的字串  
    string str11;  
    str11 = str10.substr(1015);//返回從下標10開始的15個字符組成的字符串   
    cout << str11 << endl;   
      
    //9.string的交換  
    str11.swap(str10);//交換str11與str10的值   
    cout << str11 << endl;   
      
    //10.string的查找,查找成功時返回所在位置,失敗時返回string::npos的值,即是-1   
    string str12 = "abcdefghijklmnopqrstuvwxyz";  
    int pos;  
    pos = str12.find('i'0);//從位置0開始查找字符i在當前字符串的位置   
    cout << pos << endl;  
    pos = str12.find("ghijk"0);//從位置0開始查找字符串“ghijk”在當前字符串的位置   
    cout << pos << endl;   
    pos = str12.find("opqrstuvw"04);//從位置0開始查找字符串“opqrstuvw”前4個字符組成的字符串在當前字符串中的位置   
    cout << pos << endl;   
    pos = str12.rfind('s'string::npos);//從字符串str12反向開始查找字符s在字符串中的位置   
    cout << pos << endl;   
    pos = str12.rfind("klmn"string::npos);//從字符串str12反向開始查找字符串“klmn”在字符串中的位置   
    cout << pos << endl;  
    pos = str12.rfind("opqrstuvw"string::npos, 3);//從string::pos開始從後向前查找字符串s中前n個字符組成的字符串在當前串中的位置   
    cout << pos << endl;   
      
    string str13 = "aaaabbbbccccdddeeefffggghhhiiijjjkkllmmmandjfaklsdfpopdtwptioczx";  
    pos = str13.find_first_of('d'0);//從位置0開始查找字符d在當前字符串第一次出現的位置   
    cout << pos << endl;   
    pos = str13.find_first_of("eefff"0);//從位置0開始查找字符串“eeefff“在當前字符串中第一次出現的位置   
    cout << pos << endl;   
    pos = str13.find_first_of("efff"03);//從位置0開始查找當前串中第一個在字符串”efff“的前3個字符組成的數組裏的字符的位置   
    cout << pos << endl;  
    pos = str13.find_first_not_of('b'0);//從當前串中查找第一個不在串s中的字符出現的位置   
    cout << pos << endl;   
    pos = str13.find_first_not_of("abcdefghij"0);//從當前串中查找第一個不在串s中的字符出現的位置   
    cout << pos << endl;   
    pos = str13.find_first_not_of("abcdefghij"03);//從當前串中查找第一個不在由字符串”abcdefghij”的前3個字符所組成的字符串中的字符出現的位置   
    cout << pos << endl;   
    //下面的last的格式和first的一致,只是它從後面檢索!   
    pos = str13.find_last_of('b'string::npos);  
    cout << pos << endl;  
    pos = str13.find_last_of("abcdef"string::npos);  
    cout << pos << endl;  
    pos = str13.find_last_of("abcdef"string::npos, 2);  
    cout << pos << endl;   
    pos = str13.find_last_not_of('a'string::npos);  
    cout << pos << endl;   
    pos = str13.find_last_not_of("abcdef"string::npos);  
    cout << pos << endl;  
    pos = str13.find_last_not_of("abcdef"string::npos, 3);  
    cout << pos << endl;  
       
    //11.string的替換   
    string str14 = "abcdefghijklmn";  
    str14.replace(03"qqqq");//刪除從0開始的3個字符,然後在0處插入字符串“qqqq”   
    cout << str14 << endl;   
    str14.replace(03"vvvv"2);//刪除從0開始的3個字符,然後在0處插入字符串“vvvv”的前2個字符   
    cout << str14 << endl;   
    str14.replace(03"opqrstuvw"24);//刪除從0開始的3個字符,然後在0處插入字符串“opqrstuvw”從位置2開始的4個字符   
    cout << str14 << endl;   
    str14.replace(038'c');//刪除從0開始的3個字符,然後在0處插入8個字符 c   
    cout << str14 << endl;   
    //上面的位置可以換爲迭代器的位置,操作是一樣的,在這裏就不再重複了!   
      
    //12.string的插入,下面的位置處亦可以用迭代器的指針表示,操作是一樣的   
    string str15 = "abcdefg";  
    str15.insert(0"mnop");//在字符串的0位置開始處,插入字符串“mnop”   
    cout << str15 << endl;   
    str15.insert(02'm');//在字符串的0位置開始處,插入2個字符m   
    cout << str15 << endl;   
    str15.insert(0"uvwxy"3);//在字符串的0位置開始處,插入字符串“uvwxy”中的前3個字符   
    cout << str15 << endl;  
    str15.insert(0"uvwxy"12);//在字符串的0位置開始處,插入從字符串“uvwxy”的1位置開始的2個字符   
    cout << str15 << endl;   
      
    //13.string的刪除  
    string str16 = "gfedcba";  
    string::iterator it;  
    it = str16.begin();  
    it++;  
    str16.erase(it);//刪除it指向的字符,返回刪除後迭代器的位置   
    cout << str16 << endl;  
    str16.erase(it, it+3);//刪除it和it+3之間的所有字符,返回刪除後迭代器的位置   
    cout << str16 << endl;   
    str16.erase(2);//刪除從字符串位置3以後的所有字符,返回位置3前面的字符   
    cout << str16 << endl;   
      
    //14.字符串的流處理  
    string str17("hello,this is a test");  
    istringstream is(str17);  
    string s1,s2,s3,s4;  
    is>>s1>>s2>>s3>>s4;//s1="hello,this",s2="is",s3="a",s4="test"  
    ostringstream os;  
    os<<s1<<s2<<s3<<s4;  
    cout<<os.str() << endl;  
      
    system("pause");  
}  
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章