(1) | ||
basic_string& replace( size_type pos, size_type count, const basic_string& str ); | (until C++20) | |
constexpr basic_string& replace( size_type pos, size_type count, const basic_string& str ); | (since C++20) | |
(2) | ||
basic_string& replace( const_iterator first, const_iterator last, const basic_string& str ); | (until C++20) | |
constexpr basic_string& replace( const_iterator first, const_iterator last, const basic_string& str ); | (since C++20) | |
(3) | ||
basic_string& replace( size_type pos, size_type count, const basic_string& str, size_type pos2, size_type count2 ); | (until C++14) | |
basic_string& replace( size_type pos, size_type count, const basic_string& str, size_type pos2, size_type count2 = npos ); | (since C++14) (until C++20) | |
constexpr basic_string& replace( size_type pos, size_type count, const basic_string& str, size_type pos2, size_type count2 = npos ); | (since C++20) | |
(4) | ||
basic_string& replace( size_type pos, size_type count, const CharT* cstr, size_type count2 ); | (until C++20) | |
constexpr basic_string& replace( size_type pos, size_type count, const CharT* cstr, size_type count2 ); | (since C++20) | |
(5) | ||
basic_string& replace( const_iterator first, const_iterator last, const CharT* cstr, size_type count2 ); | (until C++20) | |
constexpr basic_string& replace( const_iterator first, const_iterator last, const CharT* cstr, size_type count2 ); | (since C++20) | |
(6) | ||
basic_string& replace( size_type pos, size_type count, const CharT* cstr ); | (until C++20) | |
constexpr basic_string& replace( size_type pos, size_type count, const CharT* cstr ); | (since C++20) | |
(7) | ||
basic_string& replace( const_iterator first, const_iterator last, const CharT* cstr ); | (until C++20) | |
constexpr basic_string& replace( const_iterator first, const_iterator last, const CharT* cstr ); | (since C++20) | |
(8) | ||
basic_string& replace( size_type pos, size_type count, size_type count2, CharT ch ); | (until C++20) | |
constexpr basic_string& replace( size_type pos, size_type count, size_type count2, CharT ch ); | (since C++20) | |
(9) | ||
basic_string& replace( const_iterator first, const_iterator last, size_type count2, CharT ch ); | (until C++20) | |
constexpr basic_string& replace( const_iterator first, const_iterator last, size_type count2, CharT ch ); | (since C++20) | |
(10) | ||
template< class InputIt > basic_string& replace( const_iterator first, const_iterator last, InputIt first2, InputIt last2 ); | (until C++20) | |
template< class InputIt > constexpr basic_string& replace( const_iterator first, const_iterator last, InputIt first2, InputIt last2 ); | (since C++20) | |
(11) | ||
basic_string& replace( const_iterator first, const_iterator last, std::initializer_list<CharT> ilist ); | (since C++11) (until C++20) | |
constexpr basic_string& replace( const_iterator first, const_iterator last, std::initializer_list<CharT> ilist ); | (since C++20) | |
(12) | ||
template< class StringViewLike > basic_string& replace( size_type pos, size_type count, const StringViewLike& t ); | (since C++17) (until C++20) | |
template< class StringViewLike > constexpr basic_string& replace( size_type pos, size_type count, const StringViewLike& t ); | (since C++20) | |
(13) | ||
template< class StringViewLike > basic_string& replace( const_iterator first, const_iterator last, const StringViewLike& t ); | (since C++17) (until C++20) | |
template< class StringViewLike > constexpr basic_string& replace( const_iterator first, const_iterator last, const StringViewLike& t ); | (since C++20) | |
(14) | ||
template< class StringViewLike > basic_string& replace( size_type pos, size_type count, const StringViewLike& t, size_type pos2, size_type count2 = npos ); | (since C++17) (until C++20) | |
template< class StringViewLike > constexpr basic_string& replace( size_type pos, size_type count, const StringViewLike& t, size_type pos2, size_type count2 = npos ); | (since C++20) |
Replaces the characters in the range [
begin() + pos
,
begin() + std::min(pos + count, size())
)
or [
first
,
last
)
with given characters.
str
.[
pos2
,
std::min(pos2 + count2, str.size())
)
of str
.[
cstr
,
cstr + count2
)
.[
cstr
,
cstr + Traits::length(cstr)
)
.count2
copies of ch
.[
first2
,
last2
)
as if by replace(first, last, basic_string(first2, last2, get_allocator()))
.ilist
.t
to a string view sv
as if by std::basic_string_view<CharT, Traits> sv = t;
, then those characters are replaced with the characters from sv
.std::is_convertible_v<const StringViewLike&,
std::basic_string_view<CharT, Traits>>
is true
and std::is_convertible_v<const StringViewLike&, const CharT*>
is false
.t
to a string view sv
as if by std::basic_string_view<CharT, Traits> sv = t;
, then those characters are replaced with the characters from the subview sv.substr(pos2, count2)
.std::is_convertible_v<const StringViewLike&,
std::basic_string_view<CharT, Traits>>
is true
and std::is_convertible_v<const StringViewLike&, const CharT*>
is false
.If [
begin()
,
first
)
or [
first
,
last
)
is not a valid range, the behavior is undefined.
pos | - | start of the substring that is going to be replaced |
count | - | length of the substring that is going to be replaced |
first, last | - | range of characters that is going to be replaced |
str | - | string to use for replacement |
pos2 | - | start of the substring to replace with |
count2 | - | number of characters to replace with |
cstr | - | pointer to the character string to use for replacement |
ch | - | character value to use for replacement |
first2, last2 | - | range of characters to use for replacement |
ilist | - | initializer list with the characters to use for replacement |
t | - | object (convertible to std::basic_string_view ) with the characters to use for replacement |
Type requirements | ||
-InputIt must meet the requirements of LegacyInputIterator. |
*this
.
In all cases, throws std::length_error
if the resulting string will exceed max_size()
.
If an exception is thrown for any reason, this function has no effect (strong exception safety guarantee).
The following behavior-changing defect reports were applied retroactively to previously published C++ standards.
DR | Applied to | Behavior as published | Correct behavior |
---|---|---|---|
LWG 847 | C++98 | there was no exception safety guarantee | added strong exception safety guarantee |
LWG 1323 | C++98 | the types of first and last were iterator | changed to const_iterator |
LWG 2946 | C++17 | overloads (12,13) caused ambiguity in some cases | avoided by making them templates |
(C++23) | replaces specified portion of a string with a range of characters (public member function) |
(C++11) | replaces occurrences of a regular expression with formatted replacement text (function template) |
replaces all values satisfying specific criteria with another value (function template) |
© cppreference.com
Licensed under the Creative Commons Attribution-ShareAlike Unported License v3.0.
https://en.cppreference.com/w/cpp/string/basic_string/replace