Board logo

標題: replace() 函式 [打印本頁]

作者: 鄭繼威    時間: 2022-8-5 21:57     標題: replace() 函式

本帖最後由 鄭繼威 於 2022-8-5 22:20 編輯

試以 replace() 函式,將字串中的目標對象以特定字串取代。
<string> 標頭檔與 <algorithm> 標頭檔皆有提供 replace() 函式,但其用法與效果略有不同。

string::replace 參數說明
replace (size_t pos,  size_t len,  string);
size_t pos=你要換的index
size_t len=你要換的長度
const string& str=你要換的字串


std::replace 參數說明
replace (ForwardIterator first, ForwardIterator last,
                old_value, new_value)
ForwardIterator first=開始
ForwardIterator last=結束
old_value=要換的字元
new_value=要換成的字元
  1. #include<iostream>
  2. #include<cstdlib>
  3. #include<string>
  4. #include<algorithm>
  5. using namespace std;
  6. int main()
  7. {
  8.     string str1="honolulu";
  9.     cout<<str1.replace(5,1,"a")<<endl;  //honolalu
  10.    
  11.     string str2="honolulu";
  12.     cout<<str2.replace(str2.find("u"),1,"a")<<endl;  //honolalu
  13.    
  14.     string str3="honolulu";
  15.     replace(str3.begin(),str3.end(),'u','a');
  16.     cout<<str3<<endl;     //honolala
  17.    
  18.     system("pause");
  19.     return 0;
  20. }
複製代碼

作者: 許宸瑀    時間: 2022-8-6 12:00

此帖僅作者可見
作者: 許馹東    時間: 2022-8-6 12:01

此帖僅作者可見
作者: 高鋐鈞    時間: 2022-8-6 12:01

此帖僅作者可見
作者: 柳侑辰    時間: 2022-8-6 12:01

此帖僅作者可見
作者: 孫子傑    時間: 2022-8-9 19:51

此帖僅作者可見
作者: 鍾易澄    時間: 2022-8-11 18:31

此帖僅作者可見
作者: 田家齊    時間: 2022-8-13 00:09

此帖僅作者可見




歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/) Powered by Discuz! 7.2