命名空间
变体
操作

std::basic_string<CharT,Traits,Allocator>::replace_with_range

来自 cppreference.cn
< cpp‎ | string‎ | basic string
 
 
 
std::basic_string
 
template< container-compatible-range<CharT> R >

constexpr std::basic_string& replace_with_range( const_iterator first,
                                                 const_iterator last,

                                                 R&& rg );
(since C++23)

将范围 [firstlast) 中的字符替换为来自范围 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

如果由于任何原因抛出异常,则此函数不起作用(强异常安全保证)。

[编辑] 注解

特性测试 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);
}

[编辑] 参见

替换字符串的指定部分
(公开成员函数) [编辑]