在PHP中,有一个 str_replace 函数基本上可以进行查找和替换。在C++中是否有等效的函数?

最佳答案

不完全是,但是看看Boost String Algorithms Library-在这种情况下为replace functions:

std::string str("aabbaadd");
boost::algorithm::replace_all(str, "aa", "xx");
str现在包含"xxbbxxdd"

08-16 13:38