標題:
replace() 函式
[打印本頁]
作者:
陳育霖
時間:
2023-8-23 22:58
標題:
replace() 函式
本帖最後由 陳育霖 於 2024-5-1 18:24 編輯
試以 replace() 函式,將字串中的目標對象以特定字串取代。
<string> 標頭檔與 <algorithm> 標頭檔皆有提供 replace() 函式,但其用法與效果略有不同。
練習: 將
1+2-3+4-5x6
替換成
1-2/3-4/5%6
#include<iostream>
#include<cstdlib>
#include<string>
#include<algorithm>
using namespace std;
int main()
{
string str1="honolulu";
cout<<str1.replace(5,1,"a")<<endl; //honolalu
string str2="honolulu";
cout<<str2.replace(str2.find("u"),1,"a")<<endl; //honolalu
string str3="honolulu";
replace(str3.begin(),str3.end(),'u','a');
cout<<str3<<endl; //honolala
system("pause");
return 0;
}
複製代碼
作者:
陳郁媗
時間:
2023-8-29 19:42
此帖僅作者可見
作者:
盧承新
時間:
2024-5-1 18:27
此帖僅作者可見
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://seed.istak.org.tw/)
Powered by Discuz! 7.2