replace函式

Curtis_發表於2019-03-17

將字串中的某個字元,替換為另一個字元:

需包含algorithm標頭檔案。

 程式碼:

#include<algorithm>
#include<iostream> 
using namespace std;

int main()
{
    string str="asgfdsgf";
 
    cout << str << endl;
    //replace函式: 
    replace(str.begin(),str.end(),'g','m');
    cout << str << endl;
    return 0;
}

注意:此時僅能對單個字元替換,即不可將‘g’替換為‘mmm’。

結果:

相關文章