std::basic_string<CharT,Traits,Allocator>::replace_with_range
来自cppreference.com
<tbody>
</tbody>
template< container-compatible-range<CharT> R > constexpr std::basic_string& replace_with_range( const_iterator first, const_iterator last, R&& rg ); |
(C++23 起) | |
将范围 [first, last) 中的字符替换为范围 rg 中的字符。
等价于
return replace(first,
last,
std::basic_string(
std::from_range,
std::forward<R>(rg),
get_allocator())
);
参数
| first, last | - | 要被替换的字符范围 |
| rg | - | 容器兼容范围 |
返回值
*this
复杂度
与 rg 的大小成线性。
异常
如果操作会导致 size() 超出 max_size(),那么就会抛出 std::length_error。
如果因为任何原因抛出了异常,那么此函数无效果(强异常安全保证)。
注解
| 功能特性测试宏 | 值 | 标准 | 功能特性 |
|---|---|---|---|
__cpp_lib_containers_ranges |
202202L |
(C++23) | 接受容器兼容范围的成员函数 |
示例
运行此代码
#include <algorithm>
#include <cassert>
#include <forward_list>
#include <iterator>
#include <string>
int main()
{
using namespace std::literals;
auto s{"Today is today!"s};
constexpr auto today{"today"sv};
constexpr auto tomorrow{"tomorrow's yesterday"sv};
std::forward_list<char> rg;
std::ranges::reverse_copy(tomorrow, std::front_inserter(rg));
const auto pos{s.rfind(today)};
assert(pos != s.npos);
const auto first{std::next(s.begin(), pos)};
const auto last{std::next(first, today.length())};
#ifdef __cpp_lib_containers_ranges
s.replace_range(first, last, rg);
#else
s.replace(first, last, rg.cbegin(), rg.cend());
#endif
assert("Today is tomorrow's yesterday!" == s);
}
参阅
| 替换字符串的指定部分 (公开成员函数) |