在C++中,可以使用std::string
類來表示字符串,可以使用std::replace
函數來替換字符串中的指定字符。
下面是一個示例代碼:
#include <iostream>
#include <string>
#include <algorithm>
int main() {
std::string str = "Hello, World!";
char oldChar = 'o';
char newChar = '*';
std::replace(str.begin(), str.end(), oldChar, newChar);
std::cout << str << std::endl;
return 0;
}
在上述代碼中,我們定義了一個字符串str
,并指定了要替換的字符oldChar
和替換后的字符newChar
。然后,我們使用std::replace
函數來替換字符串中的所有oldChar
字符為newChar
字符。最后,我們輸出替換后的字符串。
運行以上代碼會輸出Hell*, W*rld!
,可以看到字符串中的所有o
字符都被替換為*
字符。
希望對你有所幫助!