一区二区三区日韩精品-日韩经典一区二区三区-五月激情综合丁香婷婷-欧美精品中文字幕专区

分享

C/C++字符串操作的全面總結(jié)

 C語言與CPP編程 2021-12-15

字符串操作看似簡單,其實(shí)非常重要,不注意的話,經(jīng)常出現(xiàn)代碼運(yùn)行結(jié)果和自己想要的不一致,甚至崩潰。總結(jié)一下構(gòu)建string對象方法、修改string對象的方法、string類型的操作函數(shù)、string類型的查找、string對象的比較。

首先,為了在我們的程序中使用string類型,我們必須包含頭文件 。如下: 
#include <string>

1.構(gòu)建string對象方法 
聲明一個字符串變量很簡單: 
string Str; 
這樣我們就聲明了一個字符串變量,但既然是一個類,就有構(gòu)造函數(shù)和析構(gòu)函數(shù)。上面的聲明沒有傳入?yún)?shù),所以就直接使用了string的默認(rèn)的構(gòu)造函數(shù),這個函數(shù)所作的就是把Str初始化為一個空字符串。String類的構(gòu)造函數(shù)和析構(gòu)函數(shù)如下: 
  • string s;       //生成一個空字符串s 

  • string s(s2);     //拷貝構(gòu)造函數(shù) 生成s2的復(fù)制品 

  • string s("value");   //用字符串value初始化s

  • string s(n,'c');      //生成一個字符串,包含n個c字符

  • string s(b,e);      //以區(qū)間b,e內(nèi)的字符作為字符串s的初值 

  • string s(cp,n);     //取字符數(shù)組,前n個字符作初值

  • string s(s2,pos2);   //將字符串s2"始于位置pos2"部分當(dāng)作字符串的初值 

  • string s(s2,pos1,len); //將字符串s2內(nèi)"始于pos1且長度最多l(xiāng)en"的部分作為字符串的初值 

  • s.~string() //銷毀所有字符,釋放內(nèi)存 

下面是代碼實(shí)例

#include <iostream>#include <string>
using namespace std;//20200425 測試字符串操作 公眾號:C與C語言plus
int main(){ string s1; cout <<s1 << endl; //沒有賦值輸出為空
string s2(10,'f'); cout <<s2 << endl; //用10個f定義字符串s2,輸出ffffffffff
string s3(s2); cout <<s3 << endl; //用s2定義上,將s3拷貝給s2,s2和s3是不同的字符串, //只是構(gòu)造的時候拷貝s2,修改其中一個不會影響另一個,s3輸出位ffffffffff
string s4(s3.begin(),s3.begin()+s3.size/2); //定義s4用迭代器做參數(shù),從第一個迭代器s3.begin() cout <<s4 << endl; //到第二個迭代器s3的一半即s3.size()/2結(jié)束,s3有10個f,s4輸出為fffff
char *cp = "Hello"; //最后有空字符/0 char c_array[] = "world!!!!"; //最后有空字符/0 char no_null[] = {'H','e','l','l','0'}; //最后沒有空字符/0,不算C語言字符串,只是字符數(shù)組
string ss1(cp); cout <<ss1 << endl; //cp指向的字符串一個一個拷貝到ss1對象里,ssl輸出為Hello
string ss2(c_array,5); cout <<ss2 << endl; //c_array數(shù)組名就是指向第一個字符w的指針,從w開始取5個,ss2為world
string ss3(c_array+5,4); cout <<ss3 << endl; //c_array+5指向第五個字符d,再取4個字符,ss3為!!!!
//string ss4(no_null);//用字符數(shù)組為ss4賦值,因?yàn)檎也坏?0,不知道拷貝幾個會出錯 string ss5(no_null,2); //這次取2個就知道什么時候結(jié)束,不會出錯 cout <<ss5 << endl; //ss5為He
s1 = "Hello"; cout << s1 << endl; //s1輸出Hello
string s6(s1,2); cout << s6 << endl; //用s1初始化s6,2表示字符下標(biāo),從第二個字符開始到最后,s6為llo
string s7(s1,0,2); cout << s7 << endl; //從s10開始取2個,s7為He
string s8(s1,0,8); cout << s8 << endl; //從s1的第一個開始取8個,不夠8個就結(jié)束,s8為Hello
return 0;}

2、修改string對象的方法

與容器共有的 string 操作

  • s.insert(p,t);           //在迭代器 p 指向的元素之前插入一個值為 t 的新元素,返回指向新插入元素的迭代器
  • s.insert(p,n,t);        //在迭代器 p 指向的元素之前插入 n 個值為 t 的新元素
  • s.insert(p,b,e);       //在迭代器 p 指向的元素之前插入迭代器 b 和 e 標(biāo)記范圍內(nèi)所有的元素。返回 void
  • s.assign(b,e);         //在迭代器 b 和 e 標(biāo)記范圍內(nèi)的元素替換 s。對于 string類型,該操作返回 s;對于容器類型,則返回 void
  • s.assign(n,t);          //用值為 t 的 n 個副本替換 s。對于 string 類型,該操作返回 s;對于容器類型,則返回 void
  • s.erase(p);              //刪除迭代器 p 指向的元素。返回一個迭代器,指向被 刪除元素后面的元素
  • s.erase(b,e);            //刪除迭代器 b 和 e 標(biāo)記范圍內(nèi)所有的元素。返回一個迭代器,指向被刪除元素段后面的第一個元素

下面是代碼實(shí)例

#include <iostream>#include <string>
using namespace std;//20200425 測試字符串操作 公眾號:C與C語言plus
int main(){ string s("hello"); string s2("abcdef");
string::iterator p = s.begin(); //迭代器p
s.insert(p,'A'); //在迭代器p指向的s開始之前插入A cout << s << endl; //s為Ahello
s.insert(p,3,'B'); //p指向返回的Ahello的A處,在A之前插入3個B cout << s << endl; //s為BBBAhello
string::iterator b = s2.begin(); //迭代器b string::iterator e = s2.end(); //迭代器e
//p = s.begin(); //p指向s s.insert(p,b,e); //在p指向的s之前插入b和e迭代器范圍內(nèi)的元素abcdef cout << s << endl; //s為abcdefBBBAhello
s = "hello"; cout << s << endl; //s為hello
s.assign(b,e); //s所有的元素倍替換為b到e之間的元素,b與e之間為s2 cout << s << endl; //s為abcdef
s.assign(8,'K'); cout << s << endl; //s為KKKKKKKK
p = s2.begin(); //迭代器p指向s2的a s2.erase(p); //刪除迭代器p指向的元素a cout << s2 << endl; //s2為bcdef
p = s2.begin(); //a被刪除,p指向b p++; //指向c p++; //指向d string::iterator p2 = s2.end(); //p2迭代器指向f p2--; //指向e s2.erase(p,p2); //刪除p指向的d和p2指向的e之間的元素 cout << s2 << endl; //s2為bcf
return 0;}

string 類型特有的版本

string以數(shù)組的形式存儲,可以用數(shù)組的下標(biāo)進(jìn)行修改操作:
  • s.insert(pos,n,c);      //在下標(biāo) pos 的元素之前插入 n 個字符 c
  • s.insert(pos,s2);        //在下標(biāo) pos 的元素之前插入 string 對象 s2
  • s.insert(pos,s2,pos2,len);    //在下標(biāo)為 pos 的元素之前插入 s2 中從下標(biāo)   pos2 開始的 len 個字符
  • s.insert(pos,cp,len);     //在下標(biāo)為 pos 打元素之前插入 cp 所指向數(shù)組的前l(fā)en 個字符
  • s.insert(pos,cp);        //在下標(biāo)為 pos 的元素之前插入 cp 所指向的以空字符結(jié)束的字符串副本
  • s.assign(s2);        //用 s2 的副本替換 s
  • s.assign(s2,pos2,len);     //用 s2 中從下標(biāo) pos2 開始的 len 個字符替換 s
  • s.assign(cp,len);      //用 cp 所指向數(shù)組的前 len 個字符副本替換 s
  • s.assign(cp);       //用 cp 所指向的以空字符結(jié)束的字符串替換 s
  • s.erase(pos,len);        //刪除從下標(biāo) pos 開始的 len 個字符

下面是代碼實(shí)例

#include <iostream>#include <string>
using namespace std;//20200425 測試字符串操作 公眾號:C與C語言plus
int main(){ string s("hello"); string s2("abc");
s.insert(0,3,'A'); //在s下標(biāo)是0之前插入3個A cout << s << endl; //s為AAAhello
s.insert(5,s2); //在AAAhello下標(biāo)是5的元素之前插入abc cout << s << endl; //s為AAAheabcllo
s2 = "123456"; s.insert(0,s2,2,3); //在s的下標(biāo)是0之前插入s2下標(biāo)為2開始往后的3個元素345 cout << s << endl; //s為345AAAheabcllo
char *cp = "Stately plup Buck"; s.assign (cp,7); cout << s << endl; //s為Stately
s.assign(cp); //沒有長度,默認(rèn)是拷貝全部 cout << s << endl; //s為Stately plup Buck
s = "hello"; s.insert (0,cp,7); cout << s <<endl; //s為Statelyhello
s.insert(0,cp); cout << s <<endl; //s為Statelyhello
s = "hello"; s2 = "abcdef";
s.assign(s2,2,3); //s2中下標(biāo)為2開始3個元素賦值給s; cout << s <<endl; //s為cde
s.assign(s2); cout << s <<endl; //s為abcdef
s.erase (2,3); //從下標(biāo)為2開始刪除s中的3個元素 cout << s <<endl; //s為abf
s = "123456789"; s.erase(s.size()-5,5); //刪除s中后5個 cout << s <<endl; //s為1234
s.insert(s.size(),5,'!'); //在s下標(biāo)為s.size()處,插入5個! cout << s <<endl; //s為1234?。。。。?/span>
s = "abc"; s.erase(0,1).insert(0,"A"); //先從下標(biāo)為0之前刪除一個a為bc,再插入A cout << s <<endl; //s為Abc
s = "abc"; s[0] = 'A'; //用數(shù)組的方式處理 cout << s <<endl; //s為Abc
return 0;}
3、適合string類型操作的函數(shù)
  • substr()主要功能是復(fù)制子字符串,要求從指定位置開始,并具有指定的長度。
  • append() 方法在被選元素的結(jié)尾(仍然在內(nèi)部)插入指定內(nèi)容。提示:如需在被選元素的開頭插入內(nèi)容,請使用prepend()方法
  • replace() 該函數(shù)返回一個字符串,其中指定的字符串已經(jīng)被替換為另一字符串,并且替換的次數(shù)也可以指定。

下面是代碼實(shí)例:

#include <iostream>#include <string>
using namespace std;//20200425 測試字符串操作 公眾號:C與C語言plus
int main(){ string s("Hello world"); string s2 = s.substr(6,5); //從第6個開始取5個 cout << s2 << endl ; //s2為world
s2 = s.substr(6); //從第6個開始取拷貝所有的 cout << s2 << endl ; //s2為world
s2 = s.substr(6); //s2拷貝s的全部,相當(dāng)于s2=s cout << s2 << endl ; //s2為Hello world
s = "C++ Primer"; s.append(" 3rd Ed"); //再s最后添加3rd Ed cout << s<< endl ; //s為C++ Primer 3rd Ed
s = "C++ Primer"; s.insert(s.size()," 3rd Ed"); //最后插入 cout << s<< endl ; //s為C++ Primer 3rd Ed
s.replace(11,3,"4th"); //下標(biāo)11開始3個替換4th cout << s<< endl ; //s為C++ Primer 4th Ed
s.replace(11,3,"Fourth"); //下標(biāo)11開始3個替換Fourth cout << s<< endl ; //s為C++ Primer Fourth Ed
s = "C++ Primer 3rd Ed"; //replace相當(dāng)于先刪除后插入 s.erase (11,3); //刪除3rd s.insert(11,"Fourth"); //插入Fourth cout << s<< endl ; //s為C++ Primer Fourth Ed
return 0;}
4、string類型的查找
  • s.find( args);              //在 s 中查找 args 的第一次出現(xiàn)
  • s.rfind( args)                   // 在 s 中查找 args 的最后一次出現(xiàn)
  • s.find_first_of( args)      //在 s 中查找 args 的任意字符的第一次出現(xiàn)
  • s.find_last_of( args)          //在 s 中查找 args 的任意字符的最后一次出現(xiàn)
  • s.find_first_not_of( args)       //在 s 中查找第一個不屬于 args 的字符
  • s.find_last_not_of( args)          //在 s 中查找最后一個不屬于 args 的字符
#include <iostream>#include <string>
using namespace std;//20200425 測試字符串操作 公眾號:C與C語言plus
int main(){ string name("AnnaBelle"); string::size_type pos1 = name.find("Bell"); cout << pos1 << endl; //返回下標(biāo)4,如果沒找到返回npos
if(pos1 == string::npos) cout << "沒找到!" << endl; else cout << "找到了!下標(biāo):" << pos1 <<endl;
name = "2sn3"; string numerics("0123456789"); string::size_type pos = name.find_first_of(numerics); //在2sn3中查找0123456789中任意一個第一次出現(xiàn) if(pos == string::npos) cout << "沒找到!" << endl; else cout << "找到了!下標(biāo):" << pos <<endl; //找到了!下標(biāo):1
//其他類型的查找這里就不舉例子了
return 0;}
5、string對象的比較
#include <iostream>#include <string>#include <cctype>using std::cout;using std::endl;using std::cin;using std::string;int main(void){ string str1="hi,test,hello"; string str2="hi,test"; //字符串比較 if(str1.compare(str2)>0) printf("str1>str2\n"); else if(str1.compare(str2)<0) printf("str1<str2\n"); else printf("str1==str2\n");
//str1的子串(從索引3開始,包含4個字符)與str2進(jìn)行比較 if(str1.compare(3,4,str2)==0) printf("str1的指定子串等于str2\n"); else printf("str1的指定子串不等于str2\n");
//str1指定子串與str2的指定子串進(jìn)行比較 if(str1.compare(3,4,str2,3,4)==0) printf("str1的指定子串等于str2的指定子串\n"); else printf("str1的指定子串不等于str2的指定子串\n");
//str1指定子串與字符串的前n個字符進(jìn)行比較 if(str1.compare(0,2,"hi,hello",2)==0) printf("str1的指定子串等于指定字符串的前2個字符組成的子串\n"); else printf("str1的指定子串不等于指定字符串的前2個字符組成的子串\n"); return 0;
}

    轉(zhuǎn)藏 分享 獻(xiàn)花(0

    0條評論

    發(fā)表

    請遵守用戶 評論公約

    亚洲欧洲一区二区中文字幕| 不卡在线播放一区二区三区| 99久久人妻中文字幕| 亚洲熟女一区二区三四区| 中文字幕免费观看亚洲视频| 欧美日韩国产精品第五页| 午夜福利激情性生活免费视频| 老司机精品线观看86| 国产精品欧美一区二区三区| 99久久成人精品国产免费| 亚洲最新av在线观看| 深夜视频在线观看免费你懂| 国产小青蛙全集免费看| 日本一区二区三区黄色| 国产精品久久精品国产| 99热中文字幕在线精品| 欧美成人免费视频午夜色| 久久精品伊人一区二区| 国产精品色热综合在线| 午夜福利黄片免费观看| 欧美一区二区三区喷汁尤物 | 日韩成人午夜福利免费视频| 青青操精品视频在线观看| 精品少妇人妻av免费看| 久热在线视频这里只有精品| 国内尹人香蕉综合在线| 91福利视频日本免费看看| 免费在线成人午夜视频| 欧美日韩一区二区三区色拉拉| 国产成人精品国内自产拍| 青青操成人免费在线视频| 欧美夫妻性生活一区二区| 国产精品一区二区不卡中文| 久久国产青偷人人妻潘金莲| 日本二区三区在线播放| 国产av乱了乱了一区二区三区| 日本加勒比在线播放一区| 99久只有精品免费视频播放| 国产成人亚洲欧美二区综| 久久精视频免费视频观看| 欧美成人黄色一级视频|