中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C++中replace()函數有什么用

發布時間:2022-04-14 11:14:51 來源:億速云 閱讀:327 作者:iii 欄目:編程語言

這篇文章主要講解了“C++中replace()函數有什么用”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“C++中replace()函數有什么用”吧!

C++編程語言中的string應用方式多樣化,每一種應用方式都能幫助我們提實現特定的功能需求。在這里我們將會為大家詳細介紹一下其中一個比較重要的用法,有關C++ replace()函數的應用方式。

basic_string::max_size

C++ replace()函數返回string 能放的***元素個數。(不同于capacity)

size _ type max _ size( ) const;   basic_string <char>::size_type cap, max;   cap = s.capacity ( );   max = s.max_size ( ); // max=4294967294.   basic_string::rfind

尋找給定的string。返回找到的***個string 下標值;如果沒找到則返回npos。

與find 不同的是:rfind 默認從npos 開始找。其他相同。

basic_string::replace

將原string 中的元素或子串替換。返回替換后的string。

(1)用string 或C-string 代替操作string 中從 _Pos1 開始的 _Num1 個字符

  1. basic _ string& replace( size _ type _Pos1 ,
    size _ type _Num1 , const value _ type* _Ptr );   

  2. basic _ string& replace(size _ type _Pos1 ,
    size _ type _Num1 ,const basic _ string _Str );   

  3. string a,b;   

  4. string s ( "AAAAAAAA" );   

  5. string s1p ( "BBB" );   

  6. const char* cs1p = "CCC" ;   

  7. a = s.replace ( 1 , 3 , s1p ); // s= ” ABBBAAAA ”   

  8. b = s.replace ( 5 , 3 , cs1p ); // s= ” ABBBACCC ”  

(2)用C++ replace()函數中從 _Pos2 開始的 _Num2 個字符,代替操作string 中從 _Pos1 開始的 _Num1 個字符

用C-string 中的 _Num2 個字符,代替操作string 中從 _Pos1 開始的 _Num1 個字符

  1. basic _ string& replace( size _ type _Pos1 , 
    size _ type _Num1 , const basic _ string& _Str ,   

  2. size _ type _Pos2 , size _ type );   

  3. basic _ string& replace( size _ type _Pos1 , size _ type _Num1 ,   

  4. const value _ type* _Ptr , size _ type _Num2 );   

  5. string a, b;   

  6. string s ( "AAAAAAAA" );   

  7. string s2p ( "BBB" );   

  8. const char* cs2p = "CCC";   

  9. a = s.replace ( 1 , 3 , s2p , 1 , 2 ); // s= ” ABBAAAA ”   

  10. b = s.replace ( 4 , 3 , cs2p , 1 ); // s= ” ABBAC ”  

(3)用 _Count 個character _Ch , 代替操作string 中從 _Pos1 開始的 _Num1 個字符

basic _ string& replace( size _ type _Pos1 , size _ type _Num1 ,   size _ type _Count , value _ type _Ch );   string result;   string s ( "AAAAAAAA" );   char ch = 'C';   result = s.replace ( 1 , 3 , 4 , ch ); // s= ” ACCCCAAAA ”

(4)用string 或C-string ,代替操作string 中從 First0 到 Last0 的字符

  1. basic _ string&replace(iterator First0 ,iterator Last0 , 
    const basic _ string& _Str );   

  2. basic _ string&replace(iterator First0 ,iterator _Last0 , 
    const value _ type* _Ptr );   

  3. string s ( "AAAAAAAA" ); string s4p ( "BBB" );   

  4. const char* cs4p = "CCC";   

  5. basic_string<char>::iterator IterF0, IterL0;   

  6. IterF0 = s.begin ( ); IterL0 = s.begin ( ) + 3;   

  7. string a, b;   

  8. a = s.replace ( IterF0 , IterL0 , s4p ); // s= ” BBBAAAAA ”   

  9. b = s.replace ( IterF0 , IterL0 , cs4p ); // s= ” CCCAAAAA ”  

(5)用C++ replace()函數中從 _Pos2 開始的 _Num2 個字符,代替操作string 中從 First0 到 Last0 的字符

用C-string 中的 _Num2 個字符,代替操作string 中從 First0 到 Last0 的字符

basic _ string& replace( iterator _First0 , iterator _Last0 ,   const value _ type* _Ptr , size _ type _Num2 );   template<class InputIterator> basic _ string& replace(   iterator _First0 , iterator _Last0 ,   InputIterator _First , InputIterator _Last );   IterF3 = s.begin ( ) + 1; IterL3 = s.begin ( ) + 3;   IterF4 = s.begin ( ); IterL4 = s.begin ( ) + 2;   a = s.replace ( IterF3 , IterL3 , IterF4 , IterL4 );   b = s.replace ( IterF1 , IterL1 , cs5p , 4 );

(6)用 _Count 個character _Ch , 代替操作string 中從 First0 到 Last0 的字符

basic _ string& replace( iterator _First0 , iterator _Last0 ,   size _ type _Count , value _ type _Ch );   a = s.replace ( IterF2 , IterL2 , 4 , ch );   basic_string::swap

交換兩個string。

void swap( basic _ string& _Str );   s1.swap ( s2 );   basic_string::substr

返回從 _Off ( 下標)開始的 _Count 個字符組成的string

  1. basic _ string substr( size _ type _Off = 0, 
    size _ type _Count = npos ) const;   

  2. string s("I love you!") , sub;   

  3. ssub=s.substr( ); // sub= ” I love you! ”   

  4. ssub=s.substr(1); // sub= ” love you! ”   

  5. ssub=s.substr(3,4); // sub= ” ove ”  

感謝各位的閱讀,以上就是“C++中replace()函數有什么用”的內容了,經過本文的學習后,相信大家對C++中replace()函數有什么用這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

浮山县| 岱山县| 平顶山市| 六盘水市| 施秉县| 湖南省| 阜新市| 周至县| 隆安县| 昌图县| 神木县| 新丰县| 巨鹿县| 莱西市| 甘孜| 石景山区| 烟台市| 崇阳县| 永顺县| 尼勒克县| 巴彦县| 沾化县| 雷波县| 叶城县| 陵水| 波密县| 普安县| 宾阳县| 镇康县| 三亚市| 洛川县| 祁阳县| 浦东新区| 勃利县| 昌宁县| 龙门县| 江城| 遂昌县| 蓬溪县| 南和县| 新乡县|