...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
Replace a part of the string.
template< typename T> constexpr basic_static_string& replace( size_type pos1, size_type n1, const T& t);
Constructs a temporary string_view_type
object sv
from t
, and replaces rcount
characters starting at index pos1
with those of sv
, where
rcount
is std::min(n1, size() - pos1)
.
Strong guarantee.
All references, pointers, or iterators referring to contained elements are invalidated. Any past-the-end iterators are also invalidated.
Type |
Description |
---|---|
|
The type of the object to convert. |
stdis_convertible<const T&, string_view>::value
&& !stdis_convertible<const T&, const
CharT*>::value &&
!stdis_convertible<const T&, const basic_static_string&>::value
.
*this
Name |
Description |
---|---|
|
The index to replace at. |
|
The number of characters to replace. |
|
The object to replace with. |
Type |
Thrown On |
---|---|
|
|
|
|