![]() |
Home | Libraries | People | FAQ | More |
Replace a part of the string.
template< typename T> constexprbasic_static_string& replace(basic_static_string::size_typepos1,basic_static_string::size_typen1, const T& t,basic_static_string::size_typepos2,basic_static_string::size_typen2 =basic_static_string::npos);
Constructs a temporary string_view_type
object sv from t, and replaces rcount
characters starting at index pos1
with those of sv.substr(pos2, n2),
where rcount is std::min(n1, size() - pos).
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. |
std::is_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. |
|
|
The index to begin the substring. |
|
|
The length of the substring. The default argument for this
parameter is |
|
Type |
Thrown On |
|---|---|
|
|
|
|
|
|
|
|
|