std::basic_string<CharT,Traits,Allocator>::replace_with_range
来自 cppreference.com
< cpp | string | basic string
template< container-compatible-range<CharT> R > constexpr std::basic_string& replace_with_range( const_iterator first, |
(自 C++23 起) | |
用来自范围 rg 的字符替换范围 [
first,
last)
中的字符。
等同于
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.
如果由于任何原因抛出异常,则此函数没有效果 (强异常安全保证).
[编辑] 备注
特性测试 宏 | 值 | Std | 特性 |
---|---|---|---|
__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); }
[编辑] 另请参阅
替换字符串的指定部分 (公共成员函数) |