首页 >后端开发 >C++ >如何高效地替换 C 字符串中出现的所有字符?

如何高效地替换 C 字符串中出现的所有字符?

Linda Hamilton
Linda Hamilton原创
2024-12-28 01:05:09657浏览

How to Efficiently Replace All Character Occurrences in a C   String?

替换字符串中出现的所有字符

问题:

如何高效替换C 中 std::string 中特定字符与另一个字符的所有出现?

答案:

虽然 std::string 没有为此提供内置函数,但您可以使用算法标头中的独立替换函数。操作方法如下:

#include <algorithm>
#include <string>

void replace_characters(std::string& s, char old_char, char new_char) {
  std::replace(s.begin(), s.end(), old_char, new_char); // replace all old_char with new_char in s
}

示例:

int main() {
  std::string s = "example string";
  replace_characters(s, 'x', 'y'); // replace all 'x' with 'y'
  std::cout << s << std::endl; // Output: "example string" with 'x' replaced by 'y'
  return 0;
}

以上是如何高效地替换 C 字符串中出现的所有字符?的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn