gpt4 book ai didi

c++ - 替换字符串中的多对字符

转载 作者:太空狗 更新时间:2023-10-29 19:57:18 26 4
gpt4 key购买 nike

我想用“b”替换所有出现的“a”,用“d”替换所有出现的“c”。

我目前的解决方案是:

std::replace(str.begin(), str.end(), 'a', 'b');
std::replace(str.begin(), str.end(), 'c', 'd');

是否可以使用 std 在单个函数中完成它?

最佳答案

如果你不喜欢两次pass,你可以做一次:

 std::transform(std::begin(s), std::end(s), std::begin(s), [](auto ch) {
switch (ch) {
case 'a':
return 'b';
case 'c':
return 'd';
}
return ch;
});

关于c++ - 替换字符串中的多对字符,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37952240/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com