要替換C++中的字符串中的某個字符為另一個字符,可以使用std::replace函數。
以下是一個簡單的示例代碼:
#include <iostream>
#include <string>
#include <algorithm>
int main() {
std::string str = "Hello, World!";
// 將字符串中的逗號(,)替換為感嘆號(!)
std::replace(str.begin(), str.end(), ',', '!');
std::cout << str << std::endl;
return 0;
}
在上面的示例中,我們使用std::replace
函數將字符串str
中的逗號,
替換為感嘆號!
。您可以根據需要替換任何字符。